ParenExpr represents a parenthesized expression.
| 324 | |
| 325 | // ParenExpr represents a parenthesized expression. |
| 326 | type ParenExpr struct { |
| 327 | Expr Expr |
| 328 | |
| 329 | typeAnnotation |
| 330 | } |
| 331 | |
| 332 | // Format implements the NodeFormatter interface. |
| 333 | func (node *ParenExpr) Format(ctx *FmtCtx) { |
nothing calls this directly
no outgoing calls
no test coverage detected