diff options
author | Matt Mastracci <matthew@mastracci.com> | 2023-07-01 18:00:14 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-02 00:00:14 +0000 |
commit | e746b6d80654ba4e4e26370fe6e4f784ce841d92 (patch) | |
tree | 153ffad92a96126b9ab8e906dcdabf7648755931 /core/runtime/mod.rs | |
parent | b9c0e7cd550ab14fa7da7e33ed87cbeeeb9785a0 (diff) |
refactor(core): Extract deno_core (#19658)
`deno_core` is moving out! You'll find it at
https://github.com/denoland/deno_core/ once this PR lands.
Diffstat (limited to 'core/runtime/mod.rs')
-rw-r--r-- | core/runtime/mod.rs | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/core/runtime/mod.rs b/core/runtime/mod.rs deleted file mode 100644 index aa546b8c7..000000000 --- a/core/runtime/mod.rs +++ /dev/null @@ -1,34 +0,0 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. -mod bindings; -mod jsrealm; -mod jsruntime; -#[doc(hidden)] -pub mod ops; -mod snapshot_util; - -#[cfg(test)] -mod tests; - -pub const V8_WRAPPER_TYPE_INDEX: i32 = 0; -pub const V8_WRAPPER_OBJECT_INDEX: i32 = 1; - -pub(crate) use jsrealm::ContextState; -pub use jsrealm::JsRealm; -pub use jsruntime::CompiledWasmModuleStore; -pub use jsruntime::CrossIsolateStore; -pub(crate) use jsruntime::InitMode; -pub use jsruntime::JsRuntime; -pub use jsruntime::JsRuntimeForSnapshot; -pub use jsruntime::JsRuntimeState; -pub use jsruntime::RuntimeOptions; -pub use jsruntime::RuntimeSnapshotOptions; -pub use jsruntime::SharedArrayBufferStore; -pub use jsruntime::Snapshot; -pub use snapshot_util::create_snapshot; -pub use snapshot_util::get_js_files; -pub use snapshot_util::CreateSnapshotOptions; -pub use snapshot_util::CreateSnapshotOutput; -pub use snapshot_util::FilterFn; -pub(crate) use snapshot_util::SnapshottedData; - -pub use bindings::script_origin; |