Esempio n. 1
0
 /** Pretty-printing */
 public void pretty(PrettyPrinter pp) {
   pp.print("STORE " + x);
 }
Esempio n. 2
0
 /** Unparsing */
 public String toString() {
   return PrettyPrinter.render(this);
 }
Esempio n. 3
0
 /** Pretty-printing */
 public void pretty(PrettyPrinter pp) {
   pp.binOp(a1, "-", a2);
 }