Ejemplo n.º 1
0
        public VoidObject VisitUnaryPostfixExpr(Expr.UnaryPostfix expr)
        {
            Resolve(expr.Left);
            ResolveLocalOrGlobal(expr, expr.Name);

            return(VoidObject.Void);
        }
Ejemplo n.º 2
0
 public string VisitUnaryPostfixExpr(Expr.UnaryPostfix expr)
 {
     return(Parenthesize(expr.Operator.Lexeme, expr.Left));
 }