UnaryExpr represents a unary value expression.
| 1208 | |
| 1209 | // UnaryExpr represents a unary value expression. |
| 1210 | type UnaryExpr struct { |
| 1211 | Operator UnaryOperator |
| 1212 | Expr Expr |
| 1213 | |
| 1214 | typeAnnotation |
| 1215 | fn *UnaryOp |
| 1216 | } |
| 1217 | |
| 1218 | func (*UnaryExpr) operatorExpr() {} |
| 1219 |
nothing calls this directly
no outgoing calls
no test coverage detected