public string VisitUnaryExpr(Unary expr) { return(this.Parenthesize(expr.operation.Lexeme, expr.right)); }
public object visit_Unary_Expr(Unary expr) { resolve(expr.right); return(null); }
public string VisitUnaryExpr(Unary expr) { return(Paren(expr.Op.Lexeme, expr.Right)); }
public object VisitUnaryExpr(Unary expr) { Resolve(expr.Right); return(null); }
public string Visit(Unary unary) { return(Parenthesize(unary.op.Lexeme, unary.right)); }
public string VisitUnaryExpr(Unary expr) => Parenthesize(expr.Operator.Lexeme, expr.Right);