FIR checker: introduce top-level property checkers

Also, refactor property initializer checking so that those
newly added property checkers as well as member property checker
can share the same logic
This commit is contained in:
Jinseong Jeon
2021-01-20 00:10:23 -08:00
committed by Mikhail Glukhikh
parent f9378a3ab7
commit 57c8dd86a0
11 changed files with 151 additions and 47 deletions
@@ -3,7 +3,7 @@
import kotlin.reflect.KProperty
interface T {
val a: Int by Delegate()
val a: Int by <!DELEGATED_PROPERTY_IN_INTERFACE!>Delegate()<!>
}
class Delegate {