ErrorFormatter formats transpile errors for specific editor types. Each editor has different capabilities for rendering error messages.
| 10 | // ErrorFormatter formats transpile errors for specific editor types. |
| 11 | // Each editor has different capabilities for rendering error messages. |
| 12 | type ErrorFormatter interface { |
| 13 | Format(err *transpiler.TranspileError) string |
| 14 | } |
| 15 | |
| 16 | // ============================================================================= |
| 17 | // SimpleFormatter - Single-line messages for unknown editors |
no outgoing calls
no test coverage detected