Esempio n. 1
0
 public void visit(Nope n)
 {
     throw new NotImplementedException();
 }
 public abstract void visit(Nope n);
 public virtual void visit(Nope n)
 {
     // Do nothing; leave the implementation to the main class
 }
Esempio n. 4
0
 public override void visit(Nope n)
 {
     w("nop");
 }
Esempio n. 5
0
 public ASTType visit(Nope n)
 {
     throw new NotImplementedException();
 }