| 606 | } |
| 607 | |
| 608 | type evalBinary struct { |
| 609 | id int64 |
| 610 | function string |
| 611 | overload string |
| 612 | lhs InterpretableV2 |
| 613 | rhs InterpretableV2 |
| 614 | trait int |
| 615 | impl functions.BinaryOp |
| 616 | nonStrict bool |
| 617 | } |
| 618 | |
| 619 | // ID implements the Interpretable interface method. |
| 620 | func (bin *evalBinary) ID() int64 { |
nothing calls this directly
no outgoing calls
no test coverage detected