()
| 216 | } |
| 217 | |
| 218 | async stepInto(): Promise<Dap.StepInResult | Dap.Error> { |
| 219 | if (await this._cdp.Debugger.stepInto({ breakOnAsyncCall: true })) |
| 220 | this._expectedPauseReason = { reason: 'step' }; |
| 221 | else return errors.createSilentError(localize('error.stepInDidFail', 'Unable to step in')); |
| 222 | return {}; |
| 223 | } |
| 224 | |
| 225 | async stepOut(): Promise<Dap.StepOutResult | Dap.Error> { |
| 226 | if (!(await this._cdp.Debugger.stepOut({}))) |