forked from JavaTX/JavaCompilerCore
11 lines
94 B
Plaintext
11 lines
94 B
Plaintext
|
class Meth_Gen {
|
||
|
|
||
|
m1(x, y) {
|
||
|
m2(x);
|
||
|
x = y;
|
||
|
}
|
||
|
|
||
|
m2(y) {
|
||
|
m1(y, y);
|
||
|
}
|
||
|
}
|