JavaTXCompilerInJavaTX/test/bytecode/javFiles/Tph.jav

12 lines
106 B
Plaintext
Raw Normal View History

public class Tph {
m(a,b){
var c = m2(b);
2018-10-31 15:07:37 +00:00
return a;
// return m2(b);
}
m2(b){
return b;
}
}