Skip to content

Commit 1d17010

Browse files
codebyterefoxxyz
authored andcommitted
src: allow preventing SetPrepareStackTraceCallback
Node.js sets a stack trace handler specific to the v8::Context corresponding to the current Environment. When Electron is running in a non-Node.js v8::Context (e.g in the renderer process with contextIsolation enabled), there will be no correspondent Environment - we therefore need to prevent this handler being set so that Blink falls back to its default handling and displays the correct stacktrace. PR-URL: nodejs#36447 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Gus Caplan <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Rich Trott <[email protected]>
1 parent 7956d21 commit 1d17010

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

src/api/environment.cc

+5-3
Original file line numberDiff line numberDiff line change
@@ -228,9 +228,11 @@ void SetIsolateErrorHandlers(v8::Isolate* isolate, const IsolateSettings& s) {
228228
s.fatal_error_callback : OnFatalError;
229229
isolate->SetFatalErrorHandler(fatal_error_cb);
230230

231-
auto* prepare_stack_trace_cb = s.prepare_stack_trace_callback ?
232-
s.prepare_stack_trace_callback : PrepareStackTraceCallback;
233-
isolate->SetPrepareStackTraceCallback(prepare_stack_trace_cb);
231+
if ((s.flags & SHOULD_NOT_SET_PREPARE_STACK_TRACE_CALLBACK) == 0) {
232+
auto* prepare_stack_trace_cb = s.prepare_stack_trace_callback ?
233+
s.prepare_stack_trace_callback : PrepareStackTraceCallback;
234+
isolate->SetPrepareStackTraceCallback(prepare_stack_trace_cb);
235+
}
234236
}
235237

236238
void SetIsolateMiscHandlers(v8::Isolate* isolate, const IsolateSettings& s) {

src/node.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,8 @@ class NODE_EXTERN MultiIsolatePlatform : public v8::Platform {
336336
enum IsolateSettingsFlags {
337337
MESSAGE_LISTENER_WITH_ERROR_LEVEL = 1 << 0,
338338
DETAILED_SOURCE_POSITIONS_FOR_PROFILING = 1 << 1,
339-
SHOULD_NOT_SET_PROMISE_REJECTION_CALLBACK = 1 << 2
339+
SHOULD_NOT_SET_PROMISE_REJECTION_CALLBACK = 1 << 2,
340+
SHOULD_NOT_SET_PREPARE_STACK_TRACE_CALLBACK = 1 << 3
340341
};
341342

342343
struct IsolateSettings {

0 commit comments

Comments
 (0)