ParenExpr represents a parenthesized expression.
| 264 | |
| 265 | // ParenExpr represents a parenthesized expression. |
| 266 | type ParenExpr struct { |
| 267 | Expr Expr |
| 268 | |
| 269 | typeAnnotation |
| 270 | } |
| 271 | |
| 272 | // Format implements the NodeFormatter interface. |
| 273 | func (node *ParenExpr) Format(ctx *FmtCtx) { |
nothing calls this directly
no outgoing calls
no test coverage detected