()
| 711 | } |
| 712 | |
| 713 | dispose() { |
| 714 | this._removeAllScripts(true /* silent */); |
| 715 | for (const [debuggerId, thread] of Thread._allThreadsByDebuggerId) { |
| 716 | if (thread === this) Thread._allThreadsByDebuggerId.delete(debuggerId); |
| 717 | } |
| 718 | |
| 719 | this._executionContextsCleared(); |
| 720 | |
| 721 | // Send 'exited' after all other thread-releated events |
| 722 | this._dap.with(dap => |
| 723 | dap.thread({ |
| 724 | reason: 'exited', |
| 725 | threadId: this.id, |
| 726 | }), |
| 727 | ); |
| 728 | } |
| 729 | |
| 730 | rawLocation( |
| 731 | location: Cdp.Runtime.CallFrame | Cdp.Debugger.CallFrame | Cdp.Debugger.Location, |
nothing calls this directly
no test coverage detected