forked from JavaTX/JavaCompilerCore
modified: test/javFiles/Fields.jav
Typdeklaration von Filed test2 entfernt modified: test/typeinference/JavaTXCompilerTest.java Unittest LambdaFiled.java reingenommen
This commit is contained in:
parent
b70e261b23
commit
72e128d3f3
@ -1,7 +1,7 @@
|
|||||||
import java.lang.String;
|
import java.lang.String;
|
||||||
|
|
||||||
class Fields{
|
class Fields{
|
||||||
String test2 = "test";
|
test2 = "test";
|
||||||
test;
|
test;
|
||||||
m(){
|
m(){
|
||||||
var test3;
|
var test3;
|
||||||
|
@ -23,7 +23,6 @@ import java.util.Set;
|
|||||||
public class JavaTXCompilerTest {
|
public class JavaTXCompilerTest {
|
||||||
|
|
||||||
public static final String rootDirectory = System.getProperty("user.dir")+"/test/javFiles/";
|
public static final String rootDirectory = System.getProperty("user.dir")+"/test/javFiles/";
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void finiteClosure() throws IOException, ClassNotFoundException {
|
public void finiteClosure() throws IOException, ClassNotFoundException {
|
||||||
execute(new File(rootDirectory+"fc.jav"));
|
execute(new File(rootDirectory+"fc.jav"));
|
||||||
@ -41,6 +40,10 @@ public class JavaTXCompilerTest {
|
|||||||
execute(new File(rootDirectory+"Lambda3.jav"));
|
execute(new File(rootDirectory+"Lambda3.jav"));
|
||||||
}
|
}
|
||||||
@Test
|
@Test
|
||||||
|
public void lambdaField() throws IOException, ClassNotFoundException {
|
||||||
|
execute(new File(rootDirectory+"LambdaField.jav"));
|
||||||
|
}
|
||||||
|
@Test
|
||||||
public void mathStruc() throws IOException, ClassNotFoundException {
|
public void mathStruc() throws IOException, ClassNotFoundException {
|
||||||
execute(new File(rootDirectory+"mathStruc.jav"));
|
execute(new File(rootDirectory+"mathStruc.jav"));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user