***************** boolean expressions ****************** VisitExpression visits the node
(ctx *antlrgen.ExpressionContext)
| 650 | |
| 651 | // VisitExpression visits the node |
| 652 | func (v *ASTBuilder) VisitExpression(ctx *antlrgen.ExpressionContext) interface{} { |
| 653 | v.Logger.Debugf("VisitExpression %s\n", v.getText(ctx)) |
| 654 | |
| 655 | v.SQL2AqlCtx.exprLogicalOp = tree.NOOP |
| 656 | return v.VisitChildren(ctx) |
| 657 | } |
| 658 | |
| 659 | // VisitLogicalBinary visits the node |
| 660 | func (v *ASTBuilder) VisitLogicalBinary(ctx *antlrgen.LogicalBinaryContext) interface{} { |
nothing calls this directly
no test coverage detected