1991bbbcd3
FunN-Types werden nach RefTypes mit FunN$$ nach Unifikation zurueckkonvertiert. modified: target/JavaTXcompiler-0.1-jar-with-dependencies.jar modified: test/bytecode/javFiles/Faculty.jav modified: test/bytecode/javFiles/Lambda.jav modified: test/bytecode/javFiles/OL.jav modified: test/javFiles/Lambda.jav
22 lines
228 B
Java
22 lines
228 B
Java
import java.lang.Integer;
|
|
import java.lang.Double;
|
|
import java.lang.String;
|
|
|
|
|
|
class OL {
|
|
|
|
m(x) { return x + x; }
|
|
|
|
}
|
|
|
|
|
|
class OLMain {
|
|
|
|
main(x) {
|
|
var ol;
|
|
ol = new OL();
|
|
return ol.m(x);
|
|
}
|
|
}
|
|
|