From 13a9b57dd4e2ae21537371057d2f0fa08ae2a392 Mon Sep 17 00:00:00 2001 From: Connor Peet Date: Mon, 26 Feb 2024 11:43:51 -0800 Subject: [PATCH] fix: race when stopping on node-internals exceptions Fixes https://github.com/microsoft/vscode/issues/204581 --- src/adapter/threads.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/adapter/threads.ts b/src/adapter/threads.ts index 2846e04da..33dc6f853 100644 --- a/src/adapter/threads.ts +++ b/src/adapter/threads.ts @@ -957,6 +957,7 @@ export class Thread implements IVariableStoreLocationProvider { // and an instrumentation pause in step out should not be possible. if (expectedPauseReason.direction === StepDirection.In) { // no-op + debugger; } else { return this._cdp.Debugger.resume({}); }