diff options
author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2021-05-01 03:08:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-30 21:08:29 -0400 |
commit | 578f2ba45eb264a0374dafc51e4453df92c6a5c1 (patch) | |
tree | 9d991b3f1d1b150fae7e017abff1c0cd36056c2b /runtime/web_worker.rs | |
parent | 684c357136fd44f9d5a1b8bb4402400ed1354677 (diff) |
refactor(core): provide builtins as an Extension (#10449)
Diffstat (limited to 'runtime/web_worker.rs')
-rw-r--r-- | runtime/web_worker.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/web_worker.rs b/runtime/web_worker.rs index 7f0a4885f..aa219084c 100644 --- a/runtime/web_worker.rs +++ b/runtime/web_worker.rs @@ -260,8 +260,6 @@ impl WebWorker { Some(sender), options.create_web_worker_cb.clone(), ); - ops::reg_sync(js_runtime, "op_close", deno_core::op_close); - ops::reg_sync(js_runtime, "op_resources", deno_core::op_resources); ops::io::init(js_runtime); if options.use_deno_namespace { |