Browse Source

Merge pull request #9402 from JohanMabille/continue

Clear the model and the signals upon continue response
Jeremy Tuloup 4 years ago
parent
commit
22fe80330e
1 changed files with 2 additions and 0 deletions
  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);
     }