(rootPath: string)
| 37 | } |
| 38 | |
| 39 | function createToolProject(rootPath: string): ProjectState { |
| 40 | const project = createProjectState(rootPath); |
| 41 | project.indexState.status = 'ready'; |
| 42 | return project; |
| 43 | } |
| 44 | |
| 45 | async function runSearchCodebase( |
| 46 | task: DiscoveryTaskType, |
no test coverage detected