(params: Dap.ScopesParams)
| 267 | } |
| 268 | |
| 269 | async scopes(params: Dap.ScopesParams): Promise<Dap.ScopesResult | Dap.Error> { |
| 270 | const stackFrame = this._pausedDetails |
| 271 | ? this._pausedDetails.stackTrace.frame(params.frameId) |
| 272 | : undefined; |
| 273 | if (!stackFrame) return this._stackFrameNotFoundError(); |
| 274 | return stackFrame.scopes(); |
| 275 | } |
| 276 | |
| 277 | async exceptionInfo(): Promise<Dap.ExceptionInfoResult | Dap.Error> { |
| 278 | const exception = this._pausedDetails && this._pausedDetails.exception; |
nothing calls this directly
no test coverage detected