| 538 | } |
| 539 | |
| 540 | type BinaryOperation struct { |
| 541 | Op Operator |
| 542 | LHS FieldExpression |
| 543 | RHS FieldExpression |
| 544 | |
| 545 | compiledExpressions []*regexp.Regexp |
| 546 | |
| 547 | b branchOptimizer |
| 548 | } |
| 549 | |
| 550 | func newBinaryOperation(op Operator, lhs, rhs FieldExpression) FieldExpression { |
| 551 | binop := &BinaryOperation{ |
nothing calls this directly
no outgoing calls
no test coverage detected