()
| 252 | } |
| 253 | |
| 254 | public async stepIn(): Promise<DebugProtocol.StepInResponse> { |
| 255 | const thread = await this.getMainThread(); |
| 256 | return this.stepInRequest({ threadId: thread.id }); |
| 257 | } |
| 258 | |
| 259 | public async getStack(startFrame?: number, levels?: number): Promise<DebugProtocol.StackTraceResponse> { |
| 260 | const thread = await this.getMainThread(); |
no test coverage detected