( response: DebugProtocol.ConfigurationDoneResponse, args: DebugProtocol.ConfigurationDoneArguments, )
| 594 | } |
| 595 | |
| 596 | protected configurationDoneRequest( |
| 597 | response: DebugProtocol.ConfigurationDoneResponse, |
| 598 | args: DebugProtocol.ConfigurationDoneArguments, |
| 599 | ): void { |
| 600 | this.sendResponse(response); |
| 601 | |
| 602 | this.threadManager.receivedConfigurationDone(); |
| 603 | } |
| 604 | |
| 605 | protected pauseRequest(response: DebugProtocol.PauseResponse, args: DebugProtocol.PauseArguments): void { |
| 606 | const thread = this.threadManager.getThreadInfoFromNumber(args.threadId); |
nothing calls this directly
no test coverage detected