(response: DebugProtocol.LaunchResponse, args: ConfigurationArguments)
| 418 | } |
| 419 | |
| 420 | protected launchRequest(response: DebugProtocol.LaunchResponse, args: ConfigurationArguments): void { |
| 421 | this.launchAttachInit(args); |
| 422 | this.processLaunchAttachRequest(response, false); |
| 423 | } |
| 424 | |
| 425 | protected attachRequest(response: DebugProtocol.AttachResponse, args: ConfigurationArguments): void { |
| 426 | this.launchAttachInit(args); |
nothing calls this directly
no test coverage detected