Format implements the NodeFormatter interface.
(ctx *FmtCtx)
| 1581 | |
| 1582 | // Format implements the NodeFormatter interface. |
| 1583 | func (node *IndirectionExpr) Format(ctx *FmtCtx) { |
| 1584 | exprFmtWithParen(ctx, node.Expr) |
| 1585 | ctx.FormatNode(&node.Indirection) |
| 1586 | } |
| 1587 | |
| 1588 | type annotateSyntaxMode int |
| 1589 |
nothing calls this directly
no test coverage detected