IBoundExpr IUnboundExprVisitor<IBoundExpr>.Visit(ReturnExpr expr) { return new BoundReturnExpr(expr.Value.Accept(this)); }
public virtual IUnboundExpr Transform(ReturnExpr expr) { return(expr); }
IUnboundExpr IUnboundExprVisitor <IUnboundExpr> .Visit(ReturnExpr expr) { return(Call("ReturnExpr", expr.Value.Accept(this))); }