* Called when CDP indicates that we resumed. This is marked as public since * we also call this from the ProfileController when we disable * the debugger domain (which continues the thread but doesn't result in * a "resumed" event getting sent).
()
| 704 | * a "resumed" event getting sent). |
| 705 | */ |
| 706 | onResumed() { |
| 707 | this._pausedDetails = undefined; |
| 708 | this._pausedVariables = undefined; |
| 709 | this.evaluator.setReturnedValue(undefined); |
| 710 | this._onThreadResumed(); |
| 711 | } |
| 712 | |
| 713 | dispose() { |
| 714 | this._removeAllScripts(true /* silent */); |
no test coverage detected