Add support for UltraLightScripts

This commit is contained in:
Igor Yakovlev
2020-04-30 22:24:14 +03:00
parent 6a2461f2c6
commit 62c24c95b5
16 changed files with 404 additions and 51 deletions
@@ -0,0 +1,11 @@
class Bar(val a: Int) {
val b: Int = { 0 }()
fun getAPlusB() = a + b
class Baz {
fun doSomething() {
}
}
}