@@ -95,6 +95,17 @@ static void SetExcludeNetwork(const FunctionCallbackInfo<Value>& info) {
95
95
env->options ()->report_exclude_network = info[0 ]->IsTrue ();
96
96
}
97
97
98
+ static void GetExcludeEnv (const FunctionCallbackInfo<Value>& info) {
99
+ Environment* env = Environment::GetCurrent (info);
100
+ info.GetReturnValue ().Set (env->report_exclude_env ());
101
+ }
102
+
103
+ static void SetExcludeEnv (const FunctionCallbackInfo<Value>& info) {
104
+ Environment* env = Environment::GetCurrent (info);
105
+ CHECK (info[0 ]->IsBoolean ());
106
+ env->options ()->report_exclude_env = info[0 ]->IsTrue ();
107
+ }
108
+
98
109
static void GetDirectory (const FunctionCallbackInfo<Value>& info) {
99
110
Mutex::ScopedLock lock (per_process::cli_options_mutex);
100
111
Environment* env = Environment::GetCurrent (info);
@@ -170,12 +181,6 @@ static void ShouldReportOnUncaughtException(
170
181
env->isolate_data ()->options ()->report_uncaught_exception );
171
182
}
172
183
173
- static void ShouldExcludeEnvironmentVariables (
174
- const FunctionCallbackInfo<Value>& info) {
175
- Environment* env = Environment::GetCurrent (info);
176
- info.GetReturnValue ().Set (env->report_exclude_env ());
177
- }
178
-
179
184
static void SetReportOnUncaughtException (
180
185
const FunctionCallbackInfo<Value>& info) {
181
186
Environment* env = Environment::GetCurrent (info);
@@ -193,6 +198,8 @@ static void Initialize(Local<Object> exports,
193
198
SetMethod (context, exports, " setCompact" , SetCompact);
194
199
SetMethod (context, exports, " getExcludeNetwork" , GetExcludeNetwork);
195
200
SetMethod (context, exports, " setExcludeNetwork" , SetExcludeNetwork);
201
+ SetMethod (context, exports, " getExcludeEnv" , GetExcludeEnv);
202
+ SetMethod (context, exports, " setExcludeEnv" , SetExcludeEnv);
196
203
SetMethod (context, exports, " getDirectory" , GetDirectory);
197
204
SetMethod (context, exports, " setDirectory" , SetDirectory);
198
205
SetMethod (context, exports, " getFilename" , GetFilename);
@@ -208,10 +215,6 @@ static void Initialize(Local<Object> exports,
208
215
exports,
209
216
" shouldReportOnUncaughtException" ,
210
217
ShouldReportOnUncaughtException);
211
- SetMethod (context,
212
- exports,
213
- " shouldExcludeEnvironmentVariables" ,
214
- ShouldExcludeEnvironmentVariables);
215
218
SetMethod (context,
216
219
exports,
217
220
" setReportOnUncaughtException" ,
@@ -225,6 +228,8 @@ void RegisterExternalReferences(ExternalReferenceRegistry* registry) {
225
228
registry->Register (SetCompact);
226
229
registry->Register (GetExcludeNetwork);
227
230
registry->Register (SetExcludeNetwork);
231
+ registry->Register (GetExcludeEnv);
232
+ registry->Register (SetExcludeEnv);
228
233
registry->Register (GetDirectory);
229
234
registry->Register (SetDirectory);
230
235
registry->Register (GetFilename);
@@ -236,7 +241,6 @@ void RegisterExternalReferences(ExternalReferenceRegistry* registry) {
236
241
registry->Register (ShouldReportOnSignal);
237
242
registry->Register (SetReportOnSignal);
238
243
registry->Register (ShouldReportOnUncaughtException);
239
- registry->Register (ShouldExcludeEnvironmentVariables);
240
244
registry->Register (SetReportOnUncaughtException);
241
245
}
242
246
0 commit comments