(args: DebugProtocol.LaunchRequestArguments)
| 183 | } |
| 184 | |
| 185 | public launchRequest(args: DebugProtocol.LaunchRequestArguments): Promise<DebugProtocol.LaunchResponse> { |
| 186 | return this.send('launch', args); |
| 187 | } |
| 188 | |
| 189 | public attachRequest(args: DebugProtocol.AttachRequestArguments): Promise<DebugProtocol.AttachResponse> { |
| 190 | return this.send('attach', args); |