Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/env-inl.h')
-rw-r--r--src/env-inl.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/env-inl.h b/src/env-inl.h
index 44fa1125a3c..de3d651fa7d 100644
--- a/src/env-inl.h
+++ b/src/env-inl.h
@@ -513,6 +513,14 @@ inline bool Environment::abort_on_uncaught_exception() const {
return options_->abort_on_uncaught_exception;
}
+inline void Environment::set_force_context_aware(bool value) {
+ options_->force_context_aware = value;
+}
+
+inline bool Environment::force_context_aware() const {
+ return options_->force_context_aware;
+}
+
inline void Environment::set_abort_on_uncaught_exception(bool value) {
options_->abort_on_uncaught_exception = value;
}