summaryrefslogtreecommitdiff
path: root/runtime/web_worker.rs
diff options
context:
space:
mode:
authorMatt Mastracci <matthew@mastracci.com>2023-12-05 09:26:06 -0700
committerGitHub <noreply@github.com>2023-12-05 09:26:06 -0700
commit4a9f42950140b36b1916ab0e0320d721223b1095 (patch)
tree772f89bb86f9c9120700de6ae6859b0d9a704da6 /runtime/web_worker.rs
parentce83a849a4612a170b08b4cd2a8e78c6456cdcf4 (diff)
refactor(cli): refactor bench/test for future module changes (#21460)
Extracting some refactorings for the module work that will land in https://github.com/denoland/deno_core/pull/359/
Diffstat (limited to 'runtime/web_worker.rs')
-rw-r--r--runtime/web_worker.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/web_worker.rs b/runtime/web_worker.rs
index e1d4651d6..e5adf4cc6 100644
--- a/runtime/web_worker.rs
+++ b/runtime/web_worker.rs
@@ -698,7 +698,6 @@ impl WebWorker {
event_loop_result = self.js_runtime.run_event_loop(false) => {
event_loop_result?;
-
receiver.await
}
}
@@ -730,7 +729,6 @@ impl WebWorker {
return Ok(());
}
event_loop_result?;
-
receiver.await
}
}