[jira] [Created] (GROOVY-8092) Incompatibility issues between groovy 2.4.8 and jenkins workflow-cps-plugin

2017-02-20 Thread Ion Alberdi (JIRA)
Ion Alberdi created GROOVY-8092: --- Summary: Incompatibility issues between groovy 2.4.8 and jenkins workflow-cps-plugin Key: GROOVY-8092 URL: https://issues.apache.org/jira/browse/GROOVY-8092 Project:

[jira] [Updated] (GROOVY-8092) Compatibility issues between groovy 2.4.8 and jenkins workflow-cps-plugin 2.23

2017-02-20 Thread Ion Alberdi (JIRA)
[ https://issues.apache.org/jira/browse/GROOVY-8092?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ion Alberdi updated GROOVY-8092: Summary: Compatibility issues between groovy 2.4.8 and jenkins workflow-cps-plugin 2.23 (was:

[jira] [Comment Edited] (GROOVY-8085) Exception in "finally" not caught by outer "try"

2017-02-20 Thread Daniel Sun (JIRA)
[ https://issues.apache.org/jira/browse/GROOVY-8085?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15867440#comment-15867440 ] Daniel Sun edited comment on GROOVY-8085 at 2/21/17 2:07 AM: - My test code:

[jira] [Commented] (GROOVY-8085) Exception in "finally" not caught by outer "try"

2017-02-20 Thread Daniel Sun (JIRA)
[ https://issues.apache.org/jira/browse/GROOVY-8085?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15875245#comment-15875245 ] Daniel Sun commented on GROOVY-8085: Since L1 has not been covered by exception table, so exception

[jira] [Updated] (GROOVY-8093) Final variable analysis broken within closure fields

2017-02-20 Thread Paul King (JIRA)
[ https://issues.apache.org/jira/browse/GROOVY-8093?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Paul King updated GROOVY-8093: -- Description: The following code compiles and runs successfully in 2.4.8 but fails in 2.5 snapshots:

[jira] [Created] (GROOVY-8093) Final variable analysis broken within closure fields

2017-02-20 Thread Paul King (JIRA)
Paul King created GROOVY-8093: - Summary: Final variable analysis broken within closure fields Key: GROOVY-8093 URL: https://issues.apache.org/jira/browse/GROOVY-8093 Project: Groovy Issue Type:

[jira] [Created] (GROOVY-8094) Final variable analysis giving incorrect message within nested if

2017-02-20 Thread Paul King (JIRA)
Paul King created GROOVY-8094: - Summary: Final variable analysis giving incorrect message within nested if Key: GROOVY-8094 URL: https://issues.apache.org/jira/browse/GROOVY-8094 Project: Groovy

[jira] [Updated] (GROOVY-8094) Final variable analysis giving incorrect message within nested if

2017-02-20 Thread Paul King (JIRA)
[ https://issues.apache.org/jira/browse/GROOVY-8094?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Paul King updated GROOVY-8094: -- Description: {code} def method() { final z = null if (z != null) { z = 3 } }