Exemplo n.º 1
0
 /// <summary>
 /// Visit a parse tree produced by the <c>unaryExpression</c>
 /// labeled alternative in <see cref="DaedalusParser.expression"/>.
 /// <para>
 /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/>
 /// on <paramref name="context"/>.
 /// </para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 /// <return>The visitor result.</return>
 public virtual Result VisitUnaryExpression([NotNull] DaedalusParser.UnaryExpressionContext context)
 {
     return(VisitChildren(context));
 }
Exemplo n.º 2
0
        public override ASTNode VisitUnaryExpression([NotNull] DaedalusParser.UnaryExpressionContext context)
        {
            ExpressionNode expressionNode = (ExpressionNode)Visit(context.expression());

            return(new UnaryExpressionNode(GetLocation(context), GetUnaryOperator(context.oper.GetText()), GetLocation(context.oper), expressionNode));
        }