TODO: Memoize once per checker to retain threadsafety
(emitContext *printer.EmitContext)
| 11 | |
| 12 | // TODO: Memoize once per checker to retain threadsafety |
| 13 | func createPrinterWithDefaults(emitContext *printer.EmitContext) *printer.Printer { |
| 14 | return printer.NewPrinter(printer.PrinterOptions{}, printer.PrintHandlers{}, emitContext) |
| 15 | } |
| 16 | |
| 17 | func createPrinterWithRemoveComments(emitContext *printer.EmitContext) *printer.Printer { |
| 18 | return printer.NewPrinter(printer.PrinterOptions{RemoveComments: true}, printer.PrintHandlers{}, emitContext) |
no test coverage detected