UnaryExpression represents operations like NOT expr
| 1049 | |
| 1050 | // UnaryExpression represents operations like NOT expr |
| 1051 | type UnaryExpression struct { |
| 1052 | Operator UnaryOperator |
| 1053 | Expr Expression |
| 1054 | Pos models.Location // Source position of the operator (1-based line and column) |
| 1055 | } |
| 1056 | |
| 1057 | func (u *UnaryExpression) expressionNode() {} |
| 1058 |
nothing calls this directly
no outgoing calls
no test coverage detected