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