diff options
author | Kevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com> | 2019-12-19 21:04:14 -0800 |
---|---|---|
committer | Ry Dahl <ry@tinyclouds.org> | 2019-12-20 00:04:14 -0500 |
commit | 9ef0b18eb0b4c337ccfc8d0add36bec6b657262f (patch) | |
tree | 62bc08da0245b8fd7f350480c3ad94319457a7be /deno_typescript/lib.rs | |
parent | fcae4a7c0dc74701f3b1919bfd76cfdc1a0321ed (diff) |
repl: do not crash on async op reject (#3527)
Diffstat (limited to 'deno_typescript/lib.rs')
-rw-r--r-- | deno_typescript/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deno_typescript/lib.rs b/deno_typescript/lib.rs index e53a4243d..c410c870f 100644 --- a/deno_typescript/lib.rs +++ b/deno_typescript/lib.rs @@ -220,7 +220,7 @@ pub fn mksnapshot_bundle_ts( } fn write_snapshot( - runtime_isolate: Isolate, + mut runtime_isolate: Isolate, bundle: &Path, ) -> Result<(), ErrBox> { println!("creating snapshot..."); |