JS declarations: added eval, typeof, undefined.

#KT-4136 Fixed
This commit is contained in:
Zalim Bashorov
2014-12-24 16:02:13 +03:00
parent 0988d6cace
commit 9ab045e598
14 changed files with 81 additions and 60 deletions
@@ -68,10 +68,6 @@ public final class NativeInteropTest extends SingleFileTranslationTest {
checkFooBoxIsOk();
}
public void testUndefined() throws Exception {
fooBoxTest();
}
public void testKt1519() throws Exception {
fooBoxTest();
}
@@ -143,4 +139,16 @@ public final class NativeInteropTest extends SingleFileTranslationTest {
public void testNativeGetterAndNativeSetter() throws Exception {
checkFooBoxIsOk();
}
public void testEval() throws Exception {
checkFooBoxIsOk();
}
public void testUndefined() throws Exception {
checkFooBoxIsOk();
}
public void testTypeof() throws Exception {
checkFooBoxIsOk();
}
}