You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Andres Almiray (JIRA)" <ji...@apache.org> on 2019/07/18 15:17:00 UTC

[jira] [Created] (GROOVY-9199) Code in finally block is ignored in IntelliJ IDEA debugger

Andres Almiray created GROOVY-9199:
--------------------------------------

             Summary: 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
         Attachments: example_2_5_4.txt, example_2_5_7.txt

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.



--
This message was sent by Atlassian JIRA
(v7.6.14#76016)