public void visit(Pop n) { throw new NotImplementedException(); }
public abstract void visit(Pop n);
public virtual void visit(Pop n) { // Do nothing; leave the implementation to the main class }
public override void visit(Pop n) { w("popq\t" + n.Target.accept(this)); }
public ASTType visit(Pop n) { throw new NotImplementedException(); }