Inherit ReadWriteProperty from ReadOnlyProperty #KT-27729

This commit is contained in:
Abduqodiri Qurbonzoda
2020-02-27 18:12:29 +03:00
parent 3742586209
commit a32f742893
2 changed files with 3 additions and 3 deletions
@@ -3894,7 +3894,7 @@ public abstract interface class kotlin/properties/ReadOnlyProperty {
public abstract fun getValue (Ljava/lang/Object;Lkotlin/reflect/KProperty;)Ljava/lang/Object;
}
public abstract interface class kotlin/properties/ReadWriteProperty {
public abstract interface class kotlin/properties/ReadWriteProperty : kotlin/properties/ReadOnlyProperty {
public abstract fun getValue (Ljava/lang/Object;Lkotlin/reflect/KProperty;)Ljava/lang/Object;
public abstract fun setValue (Ljava/lang/Object;Lkotlin/reflect/KProperty;Ljava/lang/Object;)V
}