Esempio n. 1
0
 public void visit(Push n)
 {
     throw new NotImplementedException();
 }
 public abstract void visit(Push n);
 public virtual void visit(Push n)
 {
     // Do nothing; leave the implementation to the main class
 }
Esempio n. 4
0
 public override void visit(Push n)
 {
     w("pushq\t" + n.Target.accept(this));
 }
Esempio n. 5
0
 public ASTType visit(Push n)
 {
     throw new NotImplementedException();
 }