(input io.Reader, target io.WriteCloser, cfg renderer.RenderSettings)
| 92 | } |
| 93 | |
| 94 | func (g *goTestFmt) FormatWithConfig(input io.Reader, target io.WriteCloser, cfg renderer.RenderSettings) { |
| 95 | _ = g.FormatWithConfigAndExitCode(input, target, cfg) |
| 96 | } |
| 97 | |
| 98 | func (g *goTestFmt) FormatWithConfigAndExitCode(input io.Reader, target io.WriteCloser, cfg renderer.RenderSettings) int { |
| 99 | tokenizerOutput := tokenizer.Tokenize(input) |
nothing calls this directly
no test coverage detected