(paths: ToolPaths)
| 1325 | } |
| 1326 | |
| 1327 | async function shouldReindex(paths: ToolPaths): Promise<boolean> { |
| 1328 | try { |
| 1329 | await fs.access(paths.keywordIndex); |
| 1330 | return false; |
| 1331 | } catch { |
| 1332 | return true; |
| 1333 | } |
| 1334 | } |
| 1335 | |
| 1336 | async function refreshDiscoveredProjectsForKnownRoots(): Promise<void> { |
| 1337 | clearDiscoveredProjectPaths(); |
no outgoing calls
no test coverage detected