2019-09-15 18:36:27 -04:00
|
|
|
pub const TS_VERSION: &str = env!("TS_VERSION");
|
|
|
|
|
2019-09-02 17:07:11 -04:00
|
|
|
pub static CLI_SNAPSHOT: &[u8] =
|
|
|
|
include_bytes!(concat!(env!("OUT_DIR"), "/CLI_SNAPSHOT.bin"));
|
|
|
|
pub static CLI_SNAPSHOT_MAP: &[u8] =
|
|
|
|
include_bytes!(concat!(env!("OUT_DIR"), "/CLI_SNAPSHOT.js.map"));
|
2019-10-04 20:28:51 -04:00
|
|
|
#[allow(dead_code)]
|
2019-09-02 17:07:11 -04:00
|
|
|
pub static CLI_SNAPSHOT_DTS: &[u8] =
|
|
|
|
include_bytes!(concat!(env!("OUT_DIR"), "/CLI_SNAPSHOT.d.ts"));
|
|
|
|
|
|
|
|
pub static COMPILER_SNAPSHOT: &[u8] =
|
|
|
|
include_bytes!(concat!(env!("OUT_DIR"), "/COMPILER_SNAPSHOT.bin"));
|
|
|
|
pub static COMPILER_SNAPSHOT_MAP: &[u8] =
|
|
|
|
include_bytes!(concat!(env!("OUT_DIR"), "/COMPILER_SNAPSHOT.js.map"));
|
2019-10-04 20:28:51 -04:00
|
|
|
#[allow(dead_code)]
|
2019-09-02 17:07:11 -04:00
|
|
|
pub static COMPILER_SNAPSHOT_DTS: &[u8] =
|
|
|
|
include_bytes!(concat!(env!("OUT_DIR"), "/COMPILER_SNAPSHOT.d.ts"));
|
|
|
|
|
2020-01-29 12:54:23 -05:00
|
|
|
pub static DENO_NS_LIB: &str = include_str!("js/lib.deno.ns.d.ts");
|
|
|
|
pub static SHARED_GLOBALS_LIB: &str =
|
|
|
|
include_str!("js/lib.deno.shared_globals.d.ts");
|
|
|
|
pub static WINDOW_LIB: &str = include_str!("js/lib.deno.window.d.ts");
|
2020-01-21 14:57:56 -05:00
|
|
|
|
2019-09-02 17:07:11 -04:00
|
|
|
#[test]
|
|
|
|
fn cli_snapshot() {
|
2020-01-08 09:06:04 -05:00
|
|
|
let mut isolate = deno_core::Isolate::new(
|
2020-01-05 11:56:18 -05:00
|
|
|
deno_core::StartupData::Snapshot(CLI_SNAPSHOT),
|
|
|
|
false,
|
|
|
|
);
|
|
|
|
deno_core::js_check(isolate.execute(
|
2019-09-02 17:07:11 -04:00
|
|
|
"<anon>",
|
|
|
|
r#"
|
2020-01-27 21:12:25 -05:00
|
|
|
if (!(bootstrapMainRuntime && bootstrapWorkerRuntime)) {
|
2019-09-02 17:07:11 -04:00
|
|
|
throw Error("bad");
|
|
|
|
}
|
|
|
|
console.log("we have console.log!!!");
|
|
|
|
"#,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn compiler_snapshot() {
|
2020-01-08 09:06:04 -05:00
|
|
|
let mut isolate = deno_core::Isolate::new(
|
2020-01-05 11:56:18 -05:00
|
|
|
deno_core::StartupData::Snapshot(COMPILER_SNAPSHOT),
|
|
|
|
false,
|
|
|
|
);
|
|
|
|
deno_core::js_check(isolate.execute(
|
2019-09-02 17:07:11 -04:00
|
|
|
"<anon>",
|
|
|
|
r#"
|
2020-01-27 21:12:25 -05:00
|
|
|
if (!(bootstrapTsCompilerRuntime && bootstrapTsCompilerRuntime)) {
|
2019-09-02 17:07:11 -04:00
|
|
|
throw Error("bad");
|
|
|
|
}
|
|
|
|
console.log(`ts version: ${ts.version}`);
|
|
|
|
"#,
|
|
|
|
));
|
|
|
|
}
|