BinaryExpression groups an operator and two operands
| 58 | |
| 59 | // BinaryExpression groups an operator and two operands |
| 60 | type BinaryExpression struct { |
| 61 | operator *Operator |
| 62 | lhs Expression |
| 63 | rhs Expression |
| 64 | } |
| 65 | |
| 66 | // Equal returns true if this expression is equal to the provided expression |
| 67 | func (operator *Operator) Equal(expression Expression) bool { |
nothing calls this directly
no outgoing calls
no test coverage detected