Example #1
0
 public void ExitConjunction(QueryParser.ConjunctionContext context)
 {
     CompileLeftAssociativeOperator(context.AND(), _expressions,
                                    (op, left, right) =>
                                    new AndExpression(op.Symbol.Line, op.Symbol.Column, left, right));
 }
Example #2
0
 /// <summary>
 /// Exit a parse tree produced by <see cref="QueryParser.conjunction"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitConjunction([NotNull] QueryParser.ConjunctionContext context)
 {
 }
Example #3
0
 public void EnterConjunction(QueryParser.ConjunctionContext context)
 {
 }