mirror of
https://github.com/denoland/deno.git
synced 2025-01-09 23:58:23 -05:00
19 lines
404 B
Rust
19 lines
404 B
Rust
// Copyright 2018-2025 the Deno authors. MIT license.
|
|
|
|
use log::debug;
|
|
|
|
#[cfg(not(feature = "hmr"))]
|
|
static CLI_SNAPSHOT: &[u8] =
|
|
include_bytes!(concat!(env!("OUT_DIR"), "/CLI_SNAPSHOT.bin"));
|
|
|
|
pub fn deno_isolate_init() -> Option<&'static [u8]> {
|
|
debug!("Deno isolate init with snapshots.");
|
|
#[cfg(not(feature = "hmr"))]
|
|
{
|
|
Some(CLI_SNAPSHOT)
|
|
}
|
|
#[cfg(feature = "hmr")]
|
|
{
|
|
None
|
|
}
|
|
}
|