diff options
Diffstat (limited to 'runtime/worker.rs')
-rw-r--r-- | runtime/worker.rs | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/runtime/worker.rs b/runtime/worker.rs index 94b0d9606..549a6cdd6 100644 --- a/runtime/worker.rs +++ b/runtime/worker.rs @@ -487,7 +487,16 @@ impl MainWorker { } pub fn bootstrap(&mut self, options: BootstrapOptions) { - self.js_runtime.op_state().borrow_mut().put(options.clone()); + // Setup bootstrap options for ops. + { + let op_state = self.js_runtime.op_state(); + let mut state = op_state.borrow_mut(); + state.put(options.clone()); + if let Some(node_ipc_fd) = options.node_ipc_fd { + state.put(deno_node::ChildPipeFd(node_ipc_fd)); + } + } + let scope = &mut self.js_runtime.handle_scope(); let args = options.as_v8(scope); let bootstrap_fn = self.bootstrap_fn_global.take().unwrap(); |