Ejemplo n.º 1
0
 public object visitBinaryExpr(Expr.Binary expr)
 {
     resolve(expr.Left);
     resolve(expr.Right);
     return(null);
 }