()
| 377 | } |
| 378 | |
| 379 | _evaluateOnAsyncFrameError(): Dap.Error { |
| 380 | return errors.createSilentError(l10n.t('Unable to evaluate on async stack frame')); |
| 381 | } |
| 382 | |
| 383 | async restartFrame(params: Dap.RestartFrameParams): Promise<Dap.RestartFrameResult | Dap.Error> { |
| 384 | const stackFrame = this._pausedDetails?.stackTrace.frame(params.frameId)?.root; |
no outgoing calls
no test coverage detected