Example #1
0
 public void visit(Leave n)
 {
     throw new NotImplementedException();
 }
 public abstract void visit(Leave n);
 public virtual void visit(Leave n)
 {
     // Do nothing; leave the implementation to the main class
 }
Example #4
0
 public override void visit(Leave n)
 {
     w("leave");
 }
 public ASTType visit(Leave n)
 {
     throw new NotImplementedException();
 }