[java decompiler] detecting Groovy synthetic constructor parameters

This commit is contained in:
Roman Shevchenko
2017-12-06 19:26:11 +01:00
parent f83c480383
commit a3332a5f31
9 changed files with 250 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
package pkg
import java.util.concurrent.Callable
class TestGroovyClass {
static class Nested { }
class Inner { }
final Nested n = new Nested()
final Inner i = new Inner()
final Runnable r = { println("I'm runnable") }
final Callable<String> c = { "I'm callable" }
}