FormatNameP formats a string reference as a name.
(s *string)
| 519 | |
| 520 | // FormatNameP formats a string reference as a name. |
| 521 | func (ctx *FmtCtx) FormatNameP(s *string) { |
| 522 | ctx.FormatNode((*Name)(s)) |
| 523 | } |
| 524 | |
| 525 | // FormatStringConstant formats a constant string value, redacting it if |
| 526 | // FmtHideConstants is set. |