* This request is sent from the debug adapter to the client to start a new debug session of the same type as the caller. * This request should only be sent if the corresponding client capability `supportsStartDebuggingRequest` is true. * A client implementation of `startDebugging` should s
(params: StartDebuggingParams)
| 186 | * A client implementation of `startDebugging` should start a new debug session (of the same type as the caller) in the same way that the caller's session was started. If the client supports hierarchical debug sessions, the newly created session can be treated as a child of the caller session. |
| 187 | */ |
| 188 | startDebuggingRequest(params: StartDebuggingParams): Promise<StartDebuggingResult>; |
| 189 | |
| 190 | /** |
| 191 | * The `initialize` request is sent as the first request from the client to the debug adapter in order to configure it with client capabilities and to retrieve capabilities from the debug adapter. |