(target: string, items: Diagnostic[])
| 304 | |
| 305 | const byFile = new Map<string, Diagnostic[]>() |
| 306 | const push = (target: string, items: Diagnostic[]) => { |
| 307 | const existing = byFile.get(target) ?? [] |
| 308 | byFile.set(target, existing.concat(items)) |
| 309 | } |
| 310 | |
| 311 | let handled = false |
| 312 | let matched = false |
no test coverage detected