JavaPatternMatching/resources/syntaxtreegenerator/SimpleCycle.ast

18 lines
180 B
Plaintext

class SimpleCycle {
SimpleCycle(){
super(());
}
TPH ETMJ m(){
TPH ETMK g;
TPH ETML h;
g = h;
h = g;
return;
}
SimpleCycle(){
super(());
}
}