From da53b9a9a404936cec927ade1991306f13e674b3 Mon Sep 17 00:00:00 2001 From: Alexey Andreev Date: Fri, 24 Jun 2016 14:48:19 +0300 Subject: [PATCH] KT-3008: fix support of KProperty/KMutableProperty --- js/js.translator/testData/kotlin_lib_ecma5.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/js/js.translator/testData/kotlin_lib_ecma5.js b/js/js.translator/testData/kotlin_lib_ecma5.js index 1d94390f7f0..ec53d3de468 100644 --- a/js/js.translator/testData/kotlin_lib_ecma5.js +++ b/js/js.translator/testData/kotlin_lib_ecma5.js @@ -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 } } } };