diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2024-06-13 09:19:33 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-13 09:19:33 +0530 |
commit | 5bcb46cacf9320bfa5088fbbda4f5a241cf9da1b (patch) | |
tree | 0ebe5dc2c4955bbfbd66640fda55dc1dff975d68 /ext/node/lib.rs | |
parent | efb2085b61812d9615d945f1b3c6517d9d94a255 (diff) |
chore(ext/node): remove old vm ops (#24187)
Unused; before the recent rewrite of node:vm
Diffstat (limited to 'ext/node/lib.rs')
-rw-r--r-- | ext/node/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/node/lib.rs b/ext/node/lib.rs index 8a20b3109..1fc5198a0 100644 --- a/ext/node/lib.rs +++ b/ext/node/lib.rs @@ -34,11 +34,11 @@ mod resolution; pub use ops::ipc::ChildPipeFd; pub use ops::ipc::IpcJsonStreamResource; -pub use ops::v8::VM_CONTEXT_INDEX; use ops::vm; pub use ops::vm::create_v8_context; pub use ops::vm::init_global_template; pub use ops::vm::ContextInitMode; +pub use ops::vm::VM_CONTEXT_INDEX; pub use package_json::PackageJson; pub use path::PathClean; pub use polyfill::is_builtin_node_module; |