mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 04:51:22 +00:00
ace25161c7
This test crashes often on windows.
20 lines
476 B
Rust
20 lines
476 B
Rust
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
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<&'static [u8]> {
|
|
debug!("Deno isolate init with snapshots.");
|
|
#[cfg(not(feature = "__runtime_js_sources"))]
|
|
{
|
|
Some(CLI_SNAPSHOT)
|
|
}
|
|
#[cfg(feature = "__runtime_js_sources")]
|
|
{
|
|
None
|
|
}
|
|
}
|