KT-3008: fix support of KProperty/KMutableProperty

This commit is contained in:
Alexey Andreev
2016-06-24 14:48:19 +03:00
parent 202400cb97
commit da53b9a9a4
+4 -4
View File
@@ -449,18 +449,18 @@
var propertyRefClassMetadataCache = {
zeroArg: {
mutable: { value: null, implementedInterface: function () {
return Kotlin.modules['stdlib'].kotlin.reflect.KMutableProperty0 }
return Kotlin.kotlin.reflect.KMutableProperty0 }
},
immutable: { value: null, implementedInterface: function () {
return Kotlin.modules['stdlib'].kotlin.reflect.KProperty0 }
return Kotlin.kotlin.reflect.KProperty0 }
}
},
oneArg: {
mutable: { value: null, implementedInterface: function () {
return Kotlin.modules['stdlib'].kotlin.reflect.KMutableProperty1 }
return Kotlin.kotlin.reflect.KMutableProperty1 }
},
immutable: { value: null, implementedInterface: function () {
return Kotlin.modules['stdlib'].kotlin.reflect.KProperty1 }
return Kotlin.kotlin.reflect.KProperty1 }
}
}
};