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