(id: string | null | undefined)
| 16 | const providers = new Map<string, LspRuntimeProvider>(); |
| 17 | |
| 18 | function toKey(id: string | null | undefined): string { |
| 19 | return String(id ?? "") |
| 20 | .trim() |
| 21 | .toLowerCase(); |
| 22 | } |
| 23 | |
| 24 | function normalizeProvider( |
| 25 | provider: LspRuntimeProvider, |
no test coverage detected