JS backend: Add class object support.

This commit is contained in:
Erokhin Stanislav
2013-08-09 14:59:09 +04:00
parent e786e62fd7
commit 9d1ae5e3d9
11 changed files with 307 additions and 16 deletions
@@ -0,0 +1,22 @@
package org.jetbrains.k2js.test.semantics;
import org.jetbrains.k2js.test.SingleFileTranslationTest;
public final class ClassObjectTest extends SingleFileTranslationTest {
public ClassObjectTest() {
super("class_object/");
}
public void testSimple() throws Exception {
checkFooBoxIsOk();
}
public void testWithExtension() throws Exception {
checkFooBoxIsOk();
}
public void testSetVar() throws Exception {
checkFooBoxIsOk();
}
}