Fir2Ir scripts: fix declarations registration and processing

This commit is contained in:
Ilya Chernikov
2023-04-27 17:53:33 +02:00
committed by Space Team
parent 5824b9c59c
commit 9adf24950a
12 changed files with 23 additions and 40 deletions
@@ -17,9 +17,9 @@ class Nested {
val innerThisProp = this<!UNRESOLVED_LABEL!>@NestedInnerClass<!>.property
inner class InnerInner {
fun f() = <!UNRESOLVED_REFERENCE!>innerFun<!>()
fun g() = <!UNRESOLVED_REFERENCE!>innerProp<!>
fun h() = this@Inner.<!UNRESOLVED_REFERENCE!>innerFun<!>()
fun i() = this@Inner.<!UNRESOLVED_REFERENCE!>innerProp<!>
fun f() = innerFun()
fun g() = innerProp
fun h() = this@Inner.innerFun()
fun i() = this@Inner.innerProp
}
}