ParenExpr represents a parenthesized expression.
| 331 | |
| 332 | // ParenExpr represents a parenthesized expression. |
| 333 | type ParenExpr struct { |
| 334 | Expr Expr |
| 335 | |
| 336 | typeAnnotation |
| 337 | } |
| 338 | |
| 339 | // Format implements the NodeFormatter interface. |
| 340 | func (node *ParenExpr) Format(ctx *FmtCtx) { |
nothing calls this directly
no outgoing calls
no test coverage detected