diff options
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/build.rs | 2 | ||||
-rw-r--r-- | runtime/web_worker.rs | 2 | ||||
-rw-r--r-- | runtime/worker.rs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/runtime/build.rs b/runtime/build.rs index b389462b5..0c9c0d0d0 100644 --- a/runtime/build.rs +++ b/runtime/build.rs @@ -158,7 +158,7 @@ mod not_docs { deno_broadcast_channel::InMemoryBroadcastChannel::default(), false, // No --unstable. ), - deno_node::init(), + // deno_node::init(), // todo(dsherret): re-enable deno_ffi::init::<Permissions>(false), deno_net::init::<Permissions>( None, false, // No --unstable. diff --git a/runtime/web_worker.rs b/runtime/web_worker.rs index ec6cd5041..ca11cc18f 100644 --- a/runtime/web_worker.rs +++ b/runtime/web_worker.rs @@ -419,7 +419,7 @@ impl WebWorker { unstable, options.unsafely_ignore_certificate_errors.clone(), ), - deno_node::init(), + // deno_node::init(), // todo(dsherret): re-enable ops::os::init_for_worker(), ops::permissions::init(), ops::process::init(), diff --git a/runtime/worker.rs b/runtime/worker.rs index c90129ab3..b8ab8b8ca 100644 --- a/runtime/worker.rs +++ b/runtime/worker.rs @@ -161,7 +161,7 @@ impl MainWorker { unstable, options.unsafely_ignore_certificate_errors.clone(), ), - deno_node::init(), + // deno_node::init() // todo(dsherret): re-enable, ops::os::init(exit_code.clone()), ops::permissions::init(), ops::process::init(), |