public void visit(Comment n)
 {
     throw new NotImplementedException();
 }
 public abstract void visit(Comment n);
 public virtual void visit(Comment n)
 {
     // Do nothing; leave the implementation to the main class
 }
Exemple #4
0
 public override void visit(Comment n)
 {
     w(".ident\t\"" + n.Name + "\"");
 }
 public ASTType visit(Comment n)
 {
     throw new NotImplementedException();
 }