Skip to content

Commit

Permalink
src: only call FatalException if not verbose
Browse files Browse the repository at this point in the history
This commit attempts to address the TODO regarding not calling
FatalException if the try_catch is verbose.
  • Loading branch information
danbev committed May 15, 2017
1 parent 46f73c2 commit 49abd1a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/node.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2648,9 +2648,9 @@ void FatalException(Isolate* isolate,

void FatalException(Isolate* isolate, const TryCatch& try_catch) {
HandleScope scope(isolate);
// TODO(bajtos) do not call FatalException if try_catch is verbose
// (requires V8 API to expose getter for try_catch.is_verbose_)
FatalException(isolate, try_catch.Exception(), try_catch.Message());
if (!try_catch.IsVerbose()) {
FatalException(isolate, try_catch.Exception(), try_catch.Message());
}
}


Expand Down

0 comments on commit 49abd1a

Please sign in to comment.