Esempio n. 1
0
 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
 }
Esempio n. 4
0
 public override void visit(Comment n)
 {
     w(".ident\t\"" + n.Name + "\"");
 }
Esempio n. 5
0
 public ASTType visit(Comment n)
 {
     throw new NotImplementedException();
 }