Introduce IrGetValue as a replacement for IrThisReference / IrGetExtensionReceiver / IrGetVariable.
This commit is contained in:
@@ -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()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user