(response: DebugProtocol.ThreadsResponse)
| 639 | } |
| 640 | |
| 641 | protected threadsRequest(response: DebugProtocol.ThreadsResponse): void { |
| 642 | response.body = { threads: this.threadManager.getThreads() }; |
| 643 | this.sendResponse(response); |
| 644 | } |
| 645 | |
| 646 | protected async stackTraceRequest(response: DebugProtocol.StackTraceResponse, args: DebugProtocol.StackTraceArguments): Promise<void> { |
| 647 | const stackFrameBatch = 20; |
nothing calls this directly
no test coverage detected