summaryrefslogtreecommitdiff
path: root/cli/js.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/js.rs')
-rw-r--r--cli/js.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/cli/js.rs b/cli/js.rs
index 4d75090d6..552f3842d 100644
--- a/cli/js.rs
+++ b/cli/js.rs
@@ -1,17 +1,16 @@
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
-use deno_core::Snapshot;
use log::debug;
#[cfg(not(feature = "__runtime_js_sources"))]
static CLI_SNAPSHOT: &[u8] =
include_bytes!(concat!(env!("OUT_DIR"), "/CLI_SNAPSHOT.bin"));
-pub fn deno_isolate_init() -> Option<Snapshot> {
+pub fn deno_isolate_init() -> Option<&'static [u8]> {
debug!("Deno isolate init with snapshots.");
#[cfg(not(feature = "__runtime_js_sources"))]
{
- Some(Snapshot::Static(CLI_SNAPSHOT))
+ Some(CLI_SNAPSHOT)
}
#[cfg(feature = "__runtime_js_sources")]
{