Exemple #1
0
            public override Expression VisitBinaryOpExp([NotNull] ExpressionAntlrParser.BinaryOpExpContext context)
            {
                var binaryOperationName = context.GetChild(1).GetText();
                var left  = Visit(context.expression(0));
                var right = Visit(context.expression(1));

                return(MakeExpression(binaryOperationName, left, right));
            }
Exemple #2
0
 /// <summary>
 /// Exit a parse tree produced by the <c>binaryOpExp</c>
 /// labeled alternative in <see cref="ExpressionAntlrParser.expression"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitBinaryOpExp([NotNull] ExpressionAntlrParser.BinaryOpExpContext context)
 {
 }
 /// <summary>
 /// Visit a parse tree produced by the <c>binaryOpExp</c>
 /// labeled alternative in <see cref="ExpressionAntlrParser.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 VisitBinaryOpExp([NotNull] ExpressionAntlrParser.BinaryOpExpContext context)
 {
     return(VisitChildren(context));
 }