()
| 229 | } |
| 230 | |
| 231 | function getKnownRootPaths(): string[] { |
| 232 | return Array.from(knownRoots.values()) |
| 233 | .map((entry) => entry.rootPath) |
| 234 | .sort((a, b) => a.localeCompare(b)); |
| 235 | } |
| 236 | |
| 237 | function getKnownRootLabel(rootPath: string): string | undefined { |
| 238 | return knownRoots.get(normalizeRootKey(rootPath))?.label; |
no outgoing calls
no test coverage detected