FormatNameP formats a string reference as a name.
(s *string)
| 368 | |
| 369 | // FormatNameP formats a string reference as a name. |
| 370 | func (ctx *FmtCtx) FormatNameP(s *string) { |
| 371 | ctx.FormatNode((*Name)(s)) |
| 372 | } |
| 373 | |
| 374 | // FormatNode recurses into a node for pretty-printing. |
| 375 | // Flag-driven special cases can hook into this. |
no test coverage detected