()
| 287 | ); |
| 288 | } |
| 289 | async getAvailableThreads(): Promise<Thread[]> { |
| 290 | return await this.ideUtils.getAvailableThreads(); |
| 291 | } |
| 292 | |
| 293 | async getWorkspaceDirs(): Promise<string[]> { |
| 294 | return this.ideUtils.getWorkspaceDirectories().map((uri) => uri.toString()); |
nothing calls this directly
no test coverage detected