()
| 621 | }, |
| 622 | }, |
| 623 | get diagnostics() { |
| 624 | const result = new Map<string, Diagnostic[]>() |
| 625 | for (const key of new Set([...pushDiagnostics.keys(), ...pullDiagnostics.keys()])) { |
| 626 | result.set(key, mergedDiagnostics(key)) |
| 627 | } |
| 628 | return result |
| 629 | }, |
| 630 | async waitForDiagnostics(request: { path: string; version: number; mode?: "document" | "full"; after?: number }) { |
| 631 | const normalizedPath = Filesystem.normalizePath( |
| 632 | path.isAbsolute(request.path) ? request.path : path.resolve(input.directory, request.path), |
no test coverage detected