()
| 270 | } |
| 271 | |
| 272 | async getTerminalContents(): Promise<string> { |
| 273 | return await this.ideUtils.getTerminalContents(1); |
| 274 | } |
| 275 | |
| 276 | async getDebugLocals(threadIndex: number): Promise<string> { |
| 277 | return await this.ideUtils.getDebugLocals(threadIndex); |
nothing calls this directly
no test coverage detected