Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
1.7-beta-1
-
None
-
WinXP
Description
GroovyConsole has an AST Viewer. It just comes up blank when I enter the following script:
class Foo { static class Bar { } }
There is no exception and no error, it's just blank. No StatementBlock and no Script class either. Just blank.
This same things happens for anonymous inner classes:
Timer timer = new Timer() boolean called = false timer.schedule(new TimerTask() { void run() { println "Task executed" called = true } }, 0) sleep 100 assert called