Format implements the NodeFormatter interface.
(ctx *FmtCtx)
| 1606 | |
| 1607 | // Format implements the NodeFormatter interface. |
| 1608 | func (node *IndirectionExpr) Format(ctx *FmtCtx) { |
| 1609 | exprFmtWithParen(ctx, node.Expr) |
| 1610 | ctx.FormatNode(&node.Indirection) |
| 1611 | } |
| 1612 | |
| 1613 | type annotateSyntaxMode int |
| 1614 |
nothing calls this directly
no test coverage detected