UnaryExpr represents an operation on a single expression.
| 405 | |
| 406 | // UnaryExpr represents an operation on a single expression. |
| 407 | type UnaryExpr struct { |
| 408 | Op Token |
| 409 | Expr Expr |
| 410 | ExprType Type |
| 411 | } |
| 412 | |
| 413 | // Type returns the type. |
| 414 | func (e *UnaryExpr) Type() Type { |
nothing calls this directly
no outgoing calls
no test coverage detected