77d397fc53
modified: src/de/dhbwstuttgart/bytecode/signature/Signature.java modified: src/de/dhbwstuttgart/bytecode/signature/TypeToSignature.java modified: test/bytecode/javFiles/Merge.jav modified: test/bytecode/javFiles/OL.jav modified: test/bytecode/javFiles/Tph.jav modified: test/bytecode/javFiles/Tph3.jav new file: test/bytecode/javFiles/WC.jav
24 lines
243 B
Java
24 lines
243 B
Java
import java.lang.String;
|
|
import java.lang.Integer;
|
|
import java.lang.Double;
|
|
|
|
|
|
|
|
public class OL {
|
|
|
|
m(x) { return x + x; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public class OLMain {
|
|
|
|
main(x) {
|
|
var ol;
|
|
ol = new OL();
|
|
return ol.m(x);
|
|
}
|
|
}
|
|
|