Fix delegated property resolve with intermediate ID provideDelegate

#KT-37406 Fixed
This commit is contained in:
Mikhail Zarechenskiy
2020-04-09 03:33:35 +03:00
parent 0262e9de2f
commit a7b959b88b
14 changed files with 100 additions and 11 deletions
@@ -0,0 +1,23 @@
// WITH_RUNTIME
// KJS_WITH_FULL_RUNTIME
val test1: Map<String, String> by lazy(LazyThreadSafetyMode.NONE) {
mapOf("string" to "string").mapValues { it.toString() }
}
val test2: String by myDelegate("OK")
fun <T> myDelegate(initializer: T): Delegate<T> = Delegate(initializer)
class Delegate<T>(val initializer: T) {
operator fun getValue(thisRef: Any?, property: kotlin.reflect.KProperty<*>): T {
return initializer
}
}
operator fun <T : Any> T.provideDelegate(receiver: Any?, property: kotlin.reflect.KProperty<*>): T = this
fun box(): String {
test1
return test2
}