Merge branch 'bytecode' of ssh://gohorb.ba-horb.de/bahome/projekt/git/JavaCompilerCore into bytecode

This commit is contained in:
Enrico Schrödter 2015-10-15 14:55:30 +02:00
commit f23a341d72
3 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,5 @@
class LambdaTest{
op = (m) -> (f) -> {f.apply(this,m); return this;};
}

View File

@ -0,0 +1,23 @@
package plugindevelopment.TypeInsertTests;
import de.dhbwstuttgart.typeinference.Menge;
import org.junit.Test;
import de.dhbwstuttgart.logger.Logger;
import de.dhbwstuttgart.logger.LoggerConfiguration;
import de.dhbwstuttgart.logger.Section;
public class LambdaTest2_3 {
private static final String TEST_FILE = "LambdaTest2_3.jav";
@Test
public void run(){
Menge<String> mustContain = new Menge<String>();
//mustContain.add("S m");
MultipleTypesInsertTester.test(this.TEST_FILE, mustContain,
new LoggerConfiguration().setOutput(Section.ASSUMPTIONS, System.out));
}
}