diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /js/src/jit-test/tests/debug/bug-1385844-2.js | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | js/src/jit-test/tests/debug/bug-1385844-2.js | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/debug/bug-1385844-2.js b/js/src/jit-test/tests/debug/bug-1385844-2.js new file mode 100644 index 0000000000..50d070b41e --- /dev/null +++ b/js/src/jit-test/tests/debug/bug-1385844-2.js @@ -0,0 +1,39 @@ +// Frame invalidatation should not follow 'debugger eval prev' links. +// This should not fail a 'frame.isDebuggee()' assertion. +// This version of the test requires only a single Debugger, and a single +// debuggee global. + +var g = newGlobal({ newCompartment: true }); +var dbg = new Debugger(g); + +g.eval(` + function f() { debugger; } +`); +g.observeAll = observeAll; + +dbg.onDebuggerStatement = first; +g.eval(`debugger;`); + +var saved; +function first(frame) { + saved = frame; + dbg.onDebuggerStatement = second; + saved.eval(`f()`); +} + +function second() { + saved.eval(`observeAll()`); +} + +function observeAll() { + // Setting this hook causes `Debugger::updateExecutionObservabilityOfFrames` + // to walk the stack looking for frames running in `g` and marking them as + // debuggees. It should ignore 'debugger eval prev' links; if it does not, the + // traversal will jump from the frame for `second`'s eval directly to `saved`, + // the frame for the `g.eval` call. In particular, it will not visit the frame + // for the eval in `first`, which was never marked as a debuggee. (Simply + // being created for a `Debugger.Frame.prototype.eval` call doesn't + // necessarily mark you as a debuggee, if your behavior doesn't need to be + // observed.) + dbg.onEnterFrame = function () { }; +} |