diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 6530c37fc..b05a41642 100644 --- a/src/main.rs +++ b/src/main.rs @@ -95,7 +95,12 @@ fn main() { log::LevelFilter::Info }); - let mut isolate = isolate::Isolate::new(flags, rest_argv, ops::dispatch); + let mut isolate = isolate::Isolate::new( + snapshot::deno_snapshot(), + flags, + rest_argv, + ops::dispatch, + ); tokio_util::init(|| { isolate .execute("deno_main.js", "denoMain();") |