diff options
Diffstat (limited to 'cli/js.rs')
-rw-r--r-- | cli/js.rs | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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")] { |