(rootPath: string)
| 235 | } |
| 236 | |
| 237 | function getKnownRootLabel(rootPath: string): string | undefined { |
| 238 | return knownRoots.get(normalizeRootKey(rootPath))?.label; |
| 239 | } |
| 240 | |
| 241 | function getContainingKnownRoot(rootPath: string): string | undefined { |
| 242 | const orderedRoots = getKnownRootPaths().sort((a, b) => b.length - a.length); |
no test coverage detected