(rootPath: string)
| 423 | } |
| 424 | |
| 425 | function setActiveProject(rootPath: string): void { |
| 426 | const resolvedRootPath = path.resolve(rootPath); |
| 427 | activeProjectKey = normalizeRootKey(resolvedRootPath); |
| 428 | rememberProjectPath(resolvedRootPath); |
| 429 | } |
| 430 | |
| 431 | function syncKnownRoots(rootEntries: Array<{ rootPath: string; label?: string }>): void { |
| 432 | const nextRoots = new Map<string, { rootPath: string; label?: string }>(); |
no test coverage detected