KJS: remove obsolete kotlin.modules
This commit is contained in:
+1
-1
@@ -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
@@ -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();
|
||||
""")
|
||||
|
||||
|
||||
@@ -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
@@ -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
@@ -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;
|
||||
""")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user