예제 #1
0
 public virtual void VisitRefReturnExpression(RefReturnExpression node)
 {
     this.Visit(node.get_Value());
     return;
 }
 public virtual ICodeNode VisitRefReturnExpression(RefReturnExpression node)
 {
     node.set_Value((Expression)this.Visit(node.get_Value()));
     return(node);
 }