| 618 | } |
| 619 | |
| 620 | type evalBinary struct { |
| 621 | id int64 |
| 622 | function string |
| 623 | overload string |
| 624 | lhs InterpretableV2 |
| 625 | rhs InterpretableV2 |
| 626 | trait int |
| 627 | impl functions.BinaryOp |
| 628 | nonStrict bool |
| 629 | } |
| 630 | |
| 631 | // ID implements the Interpretable interface method. |
| 632 | func (bin *evalBinary) ID() int64 { |
nothing calls this directly
no outgoing calls
no test coverage detected