示例#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
 }
示例#4
0
 public override void visit(Nope n)
 {
     w("nop");
 }
示例#5
0
 public ASTType visit(Nope n)
 {
     throw new NotImplementedException();
 }