[JS IR BE] Remove package from operators.kt

This commit is contained in:
Svyatoslav Kuzmich
2019-03-01 01:07:07 +03:00
parent 7b3416c99f
commit d203e062bb
+1 -3
View File
@@ -1,6 +1,4 @@
// IGNORE_BACKEND: JS_IR
// EXPECTED_REACHABLE_NODES: 1290
package foo
data class A(val value: Int)
@@ -59,7 +57,7 @@ fun box(): String {
assertEquals(undefined, js("(void 0)"), "void")
assertEquals(true, js("'key' in {'key': 10}"), "in")
assertEquals("string", js("typeof 'str'"), "typeof")
assertEquals(A(2), js("new _.foo.A(2)"), "new")
assertEquals(A(2), js("new _.A(2)"), "new")
assertEquals(true, js("new String('str') instanceof String"), "instanceof")
var s: Any = js("({key: 10})")