(s: string)
| 142 | const lines: string[] = [] |
| 143 | |
| 144 | const appendLine = (s: string) => { |
| 145 | if (lines.length < MAX_LINES) lines.push(s) |
| 146 | } |
| 147 | |
| 148 | // Group by directory for readable output |
| 149 | const filesByDir = new Map<string, string[]>() |
no outgoing calls
no test coverage detected