summaryrefslogtreecommitdiff
path: root/runtime/js.rs
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/js.rs')
-rw-r--r--runtime/js.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/runtime/js.rs b/runtime/js.rs
index def2724ce..6aaa32f5f 100644
--- a/runtime/js.rs
+++ b/runtime/js.rs
@@ -13,10 +13,3 @@ pub fn deno_isolate_init() -> Snapshot {
debug!("Deno isolate init with snapshots.");
Snapshot::Static(RUNTIME_SNAPSHOT)
}
-
-#[cfg(not(feature = "include_js_files_for_snapshotting"))]
-pub static SOURCE_CODE_FOR_99_MAIN_JS: &str = include_str!("js/99_main.js");
-
-#[cfg(feature = "include_js_files_for_snapshotting")]
-pub static PATH_FOR_99_MAIN_JS: &str =
- concat!(env!("CARGO_MANIFEST_DIR"), "/js/99_main.js");