[
https://issues.apache.org/jira/browse/GROOVY-9199?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Paul King resolved GROOVY-9199.
-------------------------------
Resolution: Fixed
Assignee: Paul King
Fix Version/s: 3.0.0-beta-3
2.5.8
Proposed PR merged. Thanks for raising the issue Andres! Thanks for the PR Eric!
> Code in finally block is ignored in IntelliJ IDEA debugger
> ----------------------------------------------------------
>
> Key: GROOVY-9199
> URL: https://issues.apache.org/jira/browse/GROOVY-9199
> Project: Groovy
> Issue Type: Improvement
> Components: bytecode
> Affects Versions: 2.5.7
> Reporter: Andres Almiray
> Assignee: Paul King
> Priority: Major
> Fix For: 2.5.8, 3.0.0-beta-3
>
> Attachments: example_2_5_4.txt, example_2_5_7.txt
>
> Time Spent: 20m
> Remaining Estimate: 0h
>
> A single line of code in a {{finally}} block is ignored. Given then following
> example code
> {code:java}
> class Example {
> static void t(boolean t) {
> if (t) {
> throw new RuntimeException();
> }
> }
> static void example() {
> try {
> t(true) // <- break point here!
> } finally {
> t(false)
> }
> }
> static void main(String[] args) {
> example()
> }
> }
> {code}
> When you run this code in the IntelliJ IDEA debugger makes the {{t(false)}}
> appears as it's not executed. The line numbers are misleading.
> Code works in 2.5.4 but it's broken since 2.5.5. Please see attached bytecode
> dumps.
>
> Problem identified by [~godin] (JaCoCo). Observed and reported at JCrete 2019
> hackfest.
--
This message was sent by Atlassian JIRA
(v7.6.14#76016)