* The request resumes execution of all threads. If the debug adapter supports single thread execution (see capability `supportsSingleThreadExecutionRequests`), setting the `singleThread` argument to true resumes only the specified thread. If not all threads were resumed, the `allThreadsContinued` at
(params: ContinueParams)
| 1558 | * The request resumes execution of all threads. If the debug adapter supports single thread execution (see capability `supportsSingleThreadExecutionRequests`), setting the `singleThread` argument to true resumes only the specified thread. If not all threads were resumed, the `allThreadsContinued` attribute of the response should be set to false. |
| 1559 | */ |
| 1560 | continue(params: ContinueParams): Promise<ContinueResult>; |
| 1561 | |
| 1562 | /** |
| 1563 | * The request executes one step (in the given granularity) for the specified thread and allows all other threads to run freely by resuming them. |
no outgoing calls