Introduce KProperty{0,1,2}.getDelegate
#KT-8384 In Progress
This commit is contained in:
+23
@@ -0,0 +1,23 @@
|
||||
// IGNORE_BACKEND: JS
|
||||
// WITH_REFLECT
|
||||
|
||||
import kotlin.reflect.KProperty
|
||||
import kotlin.reflect.jvm.isAccessible
|
||||
import kotlin.test.*
|
||||
|
||||
object Delegate {
|
||||
var storage = ""
|
||||
operator fun getValue(instance: Any?, property: KProperty<*>) = storage
|
||||
operator fun setValue(instance: Any?, property: KProperty<*>, value: String) { storage = value }
|
||||
}
|
||||
|
||||
var result: String by Delegate
|
||||
|
||||
fun box(): String {
|
||||
result = "Fail"
|
||||
val p = (::result).apply { isAccessible = true }
|
||||
val d = p.getDelegate() as Delegate
|
||||
result = "OK"
|
||||
assertEquals(d, (::result).apply { isAccessible = true }.getDelegate())
|
||||
return d.getValue(null, p)
|
||||
}
|
||||
Reference in New Issue
Block a user