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/worker.rs | |
parent | 684c357136fd44f9d5a1b8bb4402400ed1354677 (diff) |
refactor(core): provide builtins as an Extension (#10449)
Diffstat (limited to 'runtime/worker.rs')
-rw-r--r-- | runtime/worker.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/worker.rs b/runtime/worker.rs index c2e241169..81cb038cd 100644 --- a/runtime/worker.rs +++ b/runtime/worker.rs @@ -146,8 +146,6 @@ impl MainWorker { None, 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::fs_events::init(js_runtime); ops::fs::init(js_runtime); ops::http::init(js_runtime); |