(args?: DebugProtocol.TerminateArguments)
| 195 | } |
| 196 | |
| 197 | public terminateRequest(args?: DebugProtocol.TerminateArguments): Promise<DebugProtocol.TerminateResponse> { |
| 198 | return this.send('terminate', args); |
| 199 | } |
| 200 | |
| 201 | public disconnectRequest(args?: DebugProtocol.DisconnectArguments): Promise<DebugProtocol.DisconnectResponse> { |
| 202 | return this.send('disconnect', args); |