()
| 204 | } |
| 205 | |
| 206 | async _onThreads(): Promise<Dap.ThreadsResult | Dap.Error> { |
| 207 | const threads: Dap.Thread[] = []; |
| 208 | if (this._thread) threads.push({ id: this._thread.id, name: this._thread.name() }); |
| 209 | return { threads }; |
| 210 | } |
| 211 | |
| 212 | async _onStackTrace(params: Dap.StackTraceParams): Promise<Dap.StackTraceResult | Dap.Error> { |
| 213 | if (!this._thread) return this._threadNotAvailableError(); |
no test coverage detected