diff options
author | andy finch <andyfinch7@gmail.com> | 2019-04-01 15:09:59 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-04-01 15:09:59 -0400 |
commit | b0a23beb8fae964be3cdd8c23c38af66257d34c7 (patch) | |
tree | 8f7875c8ca059dfb0a3ade4da7bfb94e57d6e1aa /cli/startup_data.rs | |
parent | 659acadf77fdbeef8579a37839a464feb408437a (diff) |
Add web worker JS API (#1993)
* Refactored the way worker polling is scheduled and errors are handled.
* Share the worker future as a Shared
Diffstat (limited to 'cli/startup_data.rs')
-rw-r--r-- | cli/startup_data.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/startup_data.rs b/cli/startup_data.rs index 7f59c0678..61891ced4 100644 --- a/cli/startup_data.rs +++ b/cli/startup_data.rs @@ -31,7 +31,7 @@ pub fn deno_isolate_init() -> StartupData { pub fn compiler_isolate_init() -> StartupData { if cfg!(feature = "no-snapshot-init") { - debug!("Deno isolate init without snapshots."); + debug!("Compiler isolate init without snapshots."); #[cfg(not(feature = "check-only"))] let source_bytes = include_bytes!(concat!( env!("GN_OUT_DIR"), |