[FIR] Rework resolution of declaration statuses
There is introduced algorithm of resolution with jumps: before resolution of some class we resolve all status of members of its supertypes, so we can properly determine inherited visibility and modifiers
This commit is contained in:
+2
-2
@@ -18,11 +18,11 @@ FILE: typeParameters.kt
|
||||
super<R|AbstractList<kotlin/Int>|>()
|
||||
}
|
||||
|
||||
public final override fun get(index: R|kotlin/Int|): R|kotlin/Int| {
|
||||
public final override operator fun get(index: R|kotlin/Int|): R|kotlin/Int| {
|
||||
^get Int(42)
|
||||
}
|
||||
|
||||
public final override fun concat(other: R|List<kotlin/Int>|): R|List<kotlin/Int>| {
|
||||
public final override infix fun concat(other: R|List<kotlin/Int>|): R|List<kotlin/Int>| {
|
||||
^concat this@R|/SomeList|
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user