diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
commit | 40a355a42d4a9444dc753c04c6608dade2f06a23 (patch) | |
tree | 871fc667d2de662f171103ce5ec067014ef85e61 /devtools/server/actors/thread-configuration.js | |
parent | Adding upstream version 124.0.1. (diff) | |
download | firefox-40a355a42d4a9444dc753c04c6608dade2f06a23.tar.xz firefox-40a355a42d4a9444dc753c04c6608dade2f06a23.zip |
Adding upstream version 125.0.1.upstream/125.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'devtools/server/actors/thread-configuration.js')
-rw-r--r-- | devtools/server/actors/thread-configuration.js | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/devtools/server/actors/thread-configuration.js b/devtools/server/actors/thread-configuration.js index 8cd28f5887..f0c697bb51 100644 --- a/devtools/server/actors/thread-configuration.js +++ b/devtools/server/actors/thread-configuration.js @@ -17,29 +17,33 @@ const { } = SessionDataHelpers; // List of options supported by this thread configuration actor. +/* eslint sort-keys: "error" */ const SUPPORTED_OPTIONS = { - // Controls pausing on debugger statement. - // (This is enabled by default if omitted) - shouldPauseOnDebuggerStatement: true, - // Enable pausing on exceptions. - pauseOnExceptions: true, // Disable pausing on caught exceptions. ignoreCaughtExceptions: true, - // Include previously saved stack frames when paused. - shouldIncludeSavedFrames: true, - // Include async stack frames when paused. - shouldIncludeAsyncLiveFrames: true, - // Stop pausing on breakpoints. - skipBreakpoints: true, // Log the event break points. logEventBreakpoints: true, // Enable debugging asm & wasm. // See https://searchfox.org/mozilla-central/source/js/src/doc/Debugger/Debugger.md#16-26 observeAsmJS: true, observeWasm: true, + // Enable pausing on exceptions. + pauseOnExceptions: true, + // Boolean to know if we should display the overlay when pausing + pauseOverlay: true, // Should pause all the workers untill thread has attached. pauseWorkersUntilAttach: true, + // Include async stack frames when paused. + shouldIncludeAsyncLiveFrames: true, + // Include previously saved stack frames when paused. + shouldIncludeSavedFrames: true, + // Controls pausing on debugger statement. + // (This is enabled by default if omitted) + shouldPauseOnDebuggerStatement: true, + // Stop pausing on breakpoints. + skipBreakpoints: true, }; +/* eslint-disable sort-keys */ /** * This actor manages the configuration options which apply to thread actor for all the targets. |