KJS: remove obsolete kotlin.modules

This commit is contained in:
Zalim Bashorov
2016-12-26 20:04:13 +03:00
parent 3ef1321841
commit d635d7859e
19 changed files with 57 additions and 37 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ object A {
}
fun test() = js("""
var a = Kotlin.modules.JS_TESTS.foo.A;
var a = JS_TESTS.foo.A;
return a.js_method() + ";" + a.js_property;
""")
+2 -2
View File
@@ -9,12 +9,12 @@ package foo
}
fun testA() = js("""
var a = Kotlin.modules.JS_TESTS.foo.AA;
var a = JS_TESTS.foo.AA;
return a.foo();
""")
fun testB() = js("""
var b = new Kotlin.modules.JS_TESTS.foo.BB();
var b = new JS_TESTS.foo.BB();
return b.foo();
""")
+1 -1
View File
@@ -9,7 +9,7 @@ class B : A() {
}
fun test() = js("""
var module = Kotlin.modules.JS_TESTS.foo;
var module = JS_TESTS.foo;
return new (module.A)().js_f(23) + ";" + new (module.B)().js_f(42);
""")
@@ -9,7 +9,7 @@ class B : A {
}
fun test() = js("""
var module = Kotlin.modules.JS_TESTS.foo;
var module = JS_TESTS.foo;
return new (module.B)().js_f(23);
""")
+1 -1
View File
@@ -5,7 +5,7 @@ object A {
}
fun test() = js("""
return Kotlin.modules.JS_TESTS.foo.A.js_f(23);
return JS_TESTS.foo.A.js_f(23);
""")
fun box(): String {
@@ -5,7 +5,7 @@ class A(val x: String) {
}
fun test() = js("""
return Kotlin.modules.JS_TESTS.foo.A_int(23).x;
return JS_TESTS.foo.A_int(23).x;
""")
fun box(): String {
+1 -1
View File
@@ -11,7 +11,7 @@ object A {
}
fun test() = js("""
var a = Kotlin.modules.JS_TESTS.foo.A;
var a = JS_TESTS.foo.A;
return a.js_f(23) + ";" + a.js_g(42) + ";" + a.js_p + ";" + a.js_q;
""")