JS: use eval instead of js in tests to refer local declarations to avoid renaming by resolveTemporaryNames

This commit is contained in:
Alexey Andreev
2017-02-08 16:08:25 +03:00
committed by Alexey Andreev
parent ce1eabdf6f
commit c1627e840b
5 changed files with 6 additions and 6 deletions
@@ -25,7 +25,7 @@ fun box(): String {
if (!hasProp(b, "foo")) return "B hasn't foo"
if (!hasProp(b, "boo")) return "B hasn't boo"
val PREFIX = "JS_TESTS.foo"
val PREFIX = "_.foo"
if (eval("$PREFIX.A") == null) return "$PREFIX.A not found"
if (eval("$PREFIX.B") == null) return "$PREFIX.B not found"
if (eval("$PREFIX.A === $PREFIX.B") as Boolean) return "A and B refer to the same object"