summaryrefslogtreecommitdiff
path: root/cli/js.rs
diff options
context:
space:
mode:
authorMatt Mastracci <matthew@mastracci.com>2024-02-27 08:05:57 -0700
committerGitHub <noreply@github.com>2024-02-27 08:05:57 -0700
commit47c2a63d872886ae1d0576f3cbf630151c8ff129 (patch)
tree85ba7273598467de211fab37c4cb6dcbd87fc889 /cli/js.rs
parentf1a691274e59d3f6a1aad19d1aec02a0ffaa51d2 (diff)
chore: bump deno_core (#22596)
Migrations: - snapshot code updated - runtime stats API tweaks
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")]
{