(params: Dap.StackTraceParams)
| 261 | } |
| 262 | |
| 263 | async stackTrace(params: Dap.StackTraceParams): Promise<Dap.StackTraceResult | Dap.Error> { |
| 264 | if (!this._pausedDetails) |
| 265 | return errors.createSilentError(localize('error.threadNotPaused', 'Thread is not paused')); |
| 266 | return this._pausedDetails.stackTrace.toDap(params); |
| 267 | } |
| 268 | |
| 269 | async scopes(params: Dap.ScopesParams): Promise<Dap.ScopesResult | Dap.Error> { |
| 270 | const stackFrame = this._pausedDetails |