895b5a972e
modified: src/de/dhbwstuttgart/typedeployment/TypeInsert.java modified: src/de/dhbwstuttgart/typedeployment/TypeInsertPoint.java equals Methoden eingefuegt um Marker nur einmal im Plugin zu haben modified: target/JavaTXcompiler-0.1-jar-with-dependencies.jar modified: test/bytecode/javFiles/OL.jav modified: test/typeinference/UnifyTest.java
22 lines
246 B
Java
22 lines
246 B
Java
import java.lang.Integer;
|
|
import java.lang.Double;
|
|
import java.lang.String;
|
|
|
|
|
|
class OL {
|
|
|
|
m(x) { return x + x; }
|
|
|
|
}
|
|
|
|
|
|
class OLMain {
|
|
|
|
java.lang.Integer main(x) {
|
|
var ol;
|
|
ol = new OL();
|
|
return ol.m(x);
|
|
}
|
|
}
|
|
|