AbstractClosureAnnotator for IR.

This commit is contained in:
Dmitry Petrov
2016-09-05 15:54:04 +03:00
committed by Dmitry Petrov
parent ceeccfa1b7
commit ec2cfd2389
17 changed files with 387 additions and 19 deletions
@@ -0,0 +1,6 @@
class C {
fun foo() = object {
fun test1() = this@C.toString() + this.toString()
fun test2() = { this@C.toString() + this.toString() }
}
}