Skip to content

Commit

Permalink
Merge pull request #2126 from microsoft/connor4312/1987940-patch
Browse files Browse the repository at this point in the history
1.95.3
  • Loading branch information
connor4312 authored Nov 8, 2024
2 parents a5977a0 + 8c90a8d commit 889c62d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "js-debug",
"displayName": "JavaScript Debugger",
"version": "1.95.2",
"version": "1.95.3",
"publisher": "ms-vscode",
"author": {
"name": "Microsoft Corporation"
Expand Down
3 changes: 2 additions & 1 deletion src/adapter/threads.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2007,9 +2007,10 @@ export class Thread implements IVariableStoreLocationProvider {
// WASM pauses should be unconditionally installed because DWARF parsing
// always happens at runtime, not in the brekapoint predictor (currently)
if (handler) {
await Promise.all(
const installed = Promise.all(
[...this._executionContexts.keys()].map(id => this._installWasmPauseHandler(id)),
);
await Promise.race([installed, delay(100)]);
}

return !!this._pauseOnSourceMapBreakpointIds?.length;
Expand Down

0 comments on commit 889c62d

Please sign in to comment.