Introduce KProperty{0,1,2}.getDelegate

#KT-8384 In Progress
This commit is contained in:
Alexander Udalov
2016-12-22 18:30:38 +03:00
parent f1cd2ee6fd
commit 78f2515e95
47 changed files with 1398 additions and 0 deletions
@@ -0,0 +1,29 @@
// IGNORE_BACKEND: JS
// WITH_REFLECT
import kotlin.reflect.*
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 }
}
class Bar
class Foo {
var Bar.result: String by Delegate
}
fun box(): String {
val foo = Foo()
val bar = Bar()
with(foo) { bar.result = "Fail" }
val prop = Foo::class.members.single { it.name == "result" } as KMutableProperty2<Foo, Bar, String>
val d = prop.apply { isAccessible = true }.getDelegate(foo, bar) as Delegate
with(foo) { bar.result = "OK" }
assertEquals(d, prop.apply { isAccessible = true }.getDelegate(foo, bar))
return d.getValue(foo, prop)
}