| 298 | } |
| 299 | |
| 300 | type ScalarOperation struct { |
| 301 | Op Operator |
| 302 | LHS ScalarExpression |
| 303 | RHS ScalarExpression |
| 304 | } |
| 305 | |
| 306 | func newScalarOperation(op Operator, lhs, rhs ScalarExpression) ScalarOperation { |
| 307 | return ScalarOperation{ |
nothing calls this directly
no outgoing calls
no test coverage detected