Ejemplo n.º 1
0
 public object VisitCallExpr(Expr.CallExpr expr)
 {
     Resolve(expr.Callee);
     foreach (var argument in expr.Arguments)
     {
         Resolve(argument);
     }
     return(null);
 }
Ejemplo n.º 2
0
 public string VisitCallExpr(Expr.CallExpr expr)
 {
     return(Parenthesize2("call", expr.Callee, expr.Arguments));
 }