浏览代码

Merge pull request #9402 from JohanMabille/continue

Clear the model and the signals upon continue response
Jeremy Tuloup 4 年之前
父节点
当前提交
22fe80330e
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      packages/debugger/src/service.ts

+ 2 - 0
packages/debugger/src/service.ts

@@ -193,6 +193,8 @@ export class DebuggerService implements IDebugger, IDisposable {
         threadId: this._currentThread()
       });
       this._model.stoppedThreads.delete(this._currentThread());
+      this._clearModel();
+      this._clearSignals();
     } catch (err) {
       console.error('Error:', err.message);
     }