diff options
author | Bert Belder <bertbelder@gmail.com> | 2020-01-25 14:31:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-25 14:31:42 +0100 |
commit | 37a7b01d5cf555bbc57d74dc9e04000115ec4867 (patch) | |
tree | a9c4148403081e3471f5233646403d64bb7f7dec /cli/lib.rs | |
parent | c21e0008b5f8aa6431295a747caa69d3ccb3bfaa (diff) |
Refactor error tracking and scope juggling in deno_core (#3783)
Diffstat (limited to 'cli/lib.rs')
-rw-r--r-- | cli/lib.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cli/lib.rs b/cli/lib.rs index a650b4d44..6fba5bda8 100644 --- a/cli/lib.rs +++ b/cli/lib.rs @@ -354,7 +354,6 @@ fn run_repl(flags: DenoFlags) { let result = worker.clone().await; if let Err(err) = result { eprintln!("{}", err.to_string()); - worker.clear_exception(); } } }; |