(taskId: string)
| 236 | } |
| 237 | |
| 238 | public async isTaskInHistory(taskId: string): Promise<boolean> { |
| 239 | try { |
| 240 | await this.sidebarProvider.getTaskWithId(taskId) |
| 241 | return true |
| 242 | } catch { |
| 243 | return false |
| 244 | } |
| 245 | } |
| 246 | |
| 247 | public getCurrentTaskStack() { |
| 248 | return this.sidebarProvider.getCurrentTaskStack() |
nothing calls this directly
no test coverage detected