FIR: skip extra non-valid groups during candidate resolve

This commit is contained in:
Mikhail Glukhikh
2019-07-15 14:09:41 +03:00
parent b813f22cfe
commit fff954ed3f
2 changed files with 4 additions and 3 deletions
@@ -394,7 +394,8 @@ abstract class TowerDataConsumer {
fun skipGroup(group: Int, resultCollector: CandidateCollector): Boolean {
if (resultCollector.isSuccess() && stopGroup == Int.MAX_VALUE) {
stopGroup = group
} else if (group > stopGroup) return true
}
if (group >= stopGroup) return true
return false
}
}
@@ -4,7 +4,7 @@ FILE: propertyFromParameter.kt
super<R|kotlin/Any|>()
}
public final val name: <ERROR TYPE REF: cycle> = R|<local>/name|.R|FakeOverride<kotlin/Function0.invoke: R|kotlin/String|>|()
public get(): <ERROR TYPE REF: cycle>
public final val name: R|kotlin/String| = R|<local>/name|.R|FakeOverride<kotlin/Function0.invoke: R|kotlin/String|>|()
public get(): R|kotlin/String|
}