| 41 | } |
| 42 | |
| 43 | bool RawDebugSession::disconnect(const DisconnectRequest &args) |
| 44 | { |
| 45 | optional<boolean> terminateDebuggee; |
| 46 | if (capabilities().supportTerminateDebuggee) |
| 47 | terminateDebuggee = args.terminateDebuggee; |
| 48 | return shutdown(terminateDebuggee, args.restart); |
| 49 | } |
| 50 | |
| 51 | void RawDebugSession::mergeCapabilities(const InitializeResponse &capabilities) |
| 52 | { |
nothing calls this directly
no test coverage detected