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:
authorcjihrig <cjihrig@gmail.com>2020-03-13 06:24:01 +0300
committercjihrig <cjihrig@gmail.com>2020-03-15 20:29:34 +0300
commit9d1a3b6f608d864f3e4b1e8dc667f733f5acdcb8 (patch)
treebc2295a96760ba4ce99f26e9b03d48a70cc70352 /src/node_options.h
parent4c64e7c59a655142367a361bae873683208b9f9b (diff)
doc,lib,src,test: make --experimental-report a nop
This commit makes the --experimental-report CLI flag a no-op. PR-URL: https://github.com/nodejs/node/pull/32242 Fixes: https://github.com/nodejs/node/issues/26293 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Diffstat (limited to 'src/node_options.h')
-rw-r--r--src/node_options.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/node_options.h b/src/node_options.h
index 958eaf29571..a4174767c9b 100644
--- a/src/node_options.h
+++ b/src/node_options.h
@@ -151,7 +151,6 @@ class EnvironmentOptions : public Options {
bool syntax_check_only = false;
bool has_eval_string = false;
- bool experimental_report = false;
bool experimental_wasi = false;
std::string eval_string;
bool print_eval = false;
@@ -188,7 +187,7 @@ class PerIsolateOptions : public Options {
bool report_uncaught_exception = false;
bool report_on_signal = false;
bool report_on_fatalerror = false;
- std::string report_signal;
+ std::string report_signal = "SIGUSR2";
std::string report_filename;
std::string report_directory;
inline EnvironmentOptions* get_per_env_options();