UnaryExpression groups an operator and a single operand
| 52 | |
| 53 | // UnaryExpression groups an operator and a single operand |
| 54 | type UnaryExpression struct { |
| 55 | operator *Operator |
| 56 | expression Expression |
| 57 | } |
| 58 | |
| 59 | // BinaryExpression groups an operator and two operands |
| 60 | type BinaryExpression struct { |
nothing calls this directly
no outgoing calls
no test coverage detected