You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Daniil Ovchinnikov (JIRA)" <ji...@apache.org> on 2019/04/12 09:26:00 UTC

[jira] [Updated] (GROOVY-9076) Debugger Step Into doesn't work in Groovy-compiled classes

     [ https://issues.apache.org/jira/browse/GROOVY-9076?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Daniil Ovchinnikov updated GROOVY-9076:
---------------------------------------
    Description: 
Please see https://github.com/dovchinnikov/debug-groovy-bug
{code:title=GC.groovy}
package foo.bar

class GC {

    GC() {
        int i = 42
    }

    int getStuff() {
        return 70
    }
}
{code}

{code:title=GMain.groovy}
package foo.bar

class GMain {

    static void main(String[] args) {
        new GC().stuff // set breakpoint here
    }
} 
{code}

  was:
Please see https://github.com/dovchinnikov/debug-groovy-bug



> Debugger Step Into doesn't work in Groovy-compiled classes
> ----------------------------------------------------------
>
>                 Key: GROOVY-9076
>                 URL: https://issues.apache.org/jira/browse/GROOVY-9076
>             Project: Groovy
>          Issue Type: Bug
>    Affects Versions: 2.5.6
>            Reporter: Daniil Ovchinnikov
>            Priority: Blocker
>
> Please see https://github.com/dovchinnikov/debug-groovy-bug
> {code:title=GC.groovy}
> package foo.bar
> class GC {
>     GC() {
>         int i = 42
>     }
>     int getStuff() {
>         return 70
>     }
> }
> {code}
> {code:title=GMain.groovy}
> package foo.bar
> class GMain {
>     static void main(String[] args) {
>         new GC().stuff // set breakpoint here
>     }
> } 
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)