diff options
Diffstat (limited to 'src/bun.js/bindings/BunDebugger.cpp')
-rw-r--r-- | src/bun.js/bindings/BunDebugger.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bun.js/bindings/BunDebugger.cpp b/src/bun.js/bindings/BunDebugger.cpp index 046739923..55942d2f6 100644 --- a/src/bun.js/bindings/BunDebugger.cpp +++ b/src/bun.js/bindings/BunDebugger.cpp @@ -452,12 +452,13 @@ extern "C" void Bun__ensureDebugger(ScriptExecutionContextIdentifier scriptId, b } } -extern "C" void BunDebugger__willHotReload() { +extern "C" void BunDebugger__willHotReload() +{ if (debuggerScriptExecutionContext == nullptr) { return; } - debuggerScriptExecutionContext->postTaskConcurrently([](ScriptExecutionContext &context){ + debuggerScriptExecutionContext->postTaskConcurrently([](ScriptExecutionContext& context) { WTF::LockHolder locker(inspectorConnectionsLock); for (auto& connections : *inspectorConnections) { for (auto* connection : connections.value) { |