FIR: preliminary refactoring of delegate resolve

This commit is contained in:
Mikhail Glukhikh
2021-08-04 18:45:40 +03:00
committed by teamcity
parent a19495cb26
commit 4d9e919f7e
23 changed files with 62 additions and 48 deletions
@@ -18,7 +18,7 @@ abstract class BaseState {
}
abstract class Some : BaseState() {
val hideBySeverityDerived: MutableSet<Int> by <!NEW_INFERENCE_NO_INFORMATION_FOR_PARAMETER, NEW_INFERENCE_NO_INFORMATION_FOR_PARAMETER!>propertyDerived<!>(mutableSetOf())
val hideBySeverityDerived: MutableSet<Int> by propertyDerived(mutableSetOf())
val hideBySeverityBase: MutableSet<Int> by propertyBase(mutableSetOf())
}