public void visit(Leave n) { throw new NotImplementedException(); }
public abstract void visit(Leave n);
public virtual void visit(Leave n) { // Do nothing; leave the implementation to the main class }
public override void visit(Leave n) { w("leave"); }
public ASTType visit(Leave n) { throw new NotImplementedException(); }