FormatNameP formats a string reference as a name.
(s *string)
| 323 | |
| 324 | // FormatNameP formats a string reference as a name. |
| 325 | func (ctx *FmtCtx) FormatNameP(s *string) { |
| 326 | ctx.FormatNode((*Name)(s)) |
| 327 | } |
| 328 | |
| 329 | // FormatNode recurses into a node for pretty-printing. |
| 330 | // Flag-driven special cases can hook into this. |
no test coverage detected