From 6a9e776200bc0893d6d17d73488be28178e6f6fe Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Thu, 6 Sep 2018 10:39:38 +0200 Subject: src: remove abort_on_uncaught_exception node.cc This commit removes the static variable abort_on_uncaught_exception and adds it to the environment options. PR-URL: https://github.com/nodejs/node/pull/22724 Reviewed-By: Anna Henningsen Reviewed-By: James M Snell --- src/env-inl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/env-inl.h') diff --git a/src/env-inl.h b/src/env-inl.h index 28c30e0354..2e0c4c5d1c 100644 --- a/src/env-inl.h +++ b/src/env-inl.h @@ -420,11 +420,11 @@ inline void Environment::set_trace_sync_io(bool value) { } inline bool Environment::abort_on_uncaught_exception() const { - return abort_on_uncaught_exception_; + return options_->abort_on_uncaught_exception; } inline void Environment::set_abort_on_uncaught_exception(bool value) { - abort_on_uncaught_exception_ = value; + options_->abort_on_uncaught_exception = value; } inline AliasedBuffer& -- cgit v1.2.3