formatStringQuotes is similar to formatString, but surrounds the output with single quotes.
(ctx *tree.FmtCtx, str string)
| 1388 | // formatStringQuotes is similar to formatString, but surrounds the output with |
| 1389 | // single quotes. |
| 1390 | func formatStringQuotes(ctx *tree.FmtCtx, str string) { |
| 1391 | ctx.WriteString("'") |
| 1392 | formatString(ctx, str) |
| 1393 | ctx.WriteString("'") |
| 1394 | } |
no test coverage detected
searching dependent graphs…