Override toString function in stdlib delegates

Co-authored-by: ilya-g <ilya.gorbunov@jetbrains.com>
This commit is contained in:
Iaroslav Postovalov
2021-01-02 18:51:37 +07:00
committed by Space Team
parent cfa06dbf74
commit fb80c0cb0d
7 changed files with 22 additions and 3 deletions
@@ -16,6 +16,8 @@ public abstract class ObservableProperty<V> : kotlin.properties.ReadWritePropert
public open override operator fun getValue(thisRef: kotlin.Any?, property: kotlin.reflect.KProperty<*>): V
public open override operator fun setValue(thisRef: kotlin.Any?, property: kotlin.reflect.KProperty<*>, value: V): kotlin.Unit
public open override fun toString(): kotlin.String
}
@kotlin.SinceKotlin(version = "1.4")