Introduce IrGetValue as a replacement for IrThisReference / IrGetExtensionReceiver / IrGetVariable.

This commit is contained in:
Dmitry Petrov
2016-09-30 17:45:41 +03:00
parent 8efe326904
commit a51efaacc9
82 changed files with 409 additions and 457 deletions
+20
View File
@@ -0,0 +1,20 @@
class Outer {
fun foo() {}
inner class Inner {
fun test() {
foo()
}
inner class Inner2 {
fun test2() {
test()
foo()
}
fun Outer.test3() {
foo()
}
}
}
}