()
| 247 | } |
| 248 | |
| 249 | public async resume(): Promise<DebugProtocol.ContinueResponse> { |
| 250 | const thread = await this.getMainThread(); |
| 251 | return this.continueRequest({ threadId: thread.id }); |
| 252 | } |
| 253 | |
| 254 | public async stepIn(): Promise<DebugProtocol.StepInResponse> { |
| 255 | const thread = await this.getMainThread(); |
no test coverage detected