summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Frame-newTargetEval-02.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /js/src/jit-test/tests/debug/Frame-newTargetEval-02.js
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/jit-test/tests/debug/Frame-newTargetEval-02.js')
-rw-r--r--js/src/jit-test/tests/debug/Frame-newTargetEval-02.js43
1 files changed, 43 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/debug/Frame-newTargetEval-02.js b/js/src/jit-test/tests/debug/Frame-newTargetEval-02.js
new file mode 100644
index 0000000000..89a20d4e39
--- /dev/null
+++ b/js/src/jit-test/tests/debug/Frame-newTargetEval-02.js
@@ -0,0 +1,43 @@
+// Test that new.target is acceptably usable in RematerializedFrames.
+
+gczeal(0);
+
+load(libdir + "jitopts.js");
+
+if (!jitTogglesMatch(Opts_Ion2NoOffthreadCompilation))
+ quit();
+
+withJitOptions(Opts_Ion2NoOffthreadCompilation, function () {
+ var g = newGlobal({newCompartment: true});
+ var dbg = new Debugger;
+
+ g.toggle = function toggle(d, expected) {
+ if (d) {
+ dbg.addDebuggee(g);
+
+ var frame = dbg.getNewestFrame();
+ assertEq(frame.implementation, "ion");
+
+ // the arrow function will not be constructing, even though it has a
+ // new.target value.
+ assertEq(frame.constructing, false);
+
+ // CONGRATS IF THIS FAILS! You, proud saviour, have made new.target parse
+ // in debug frame evals (presumably by hooking up static scope walks).
+ // Uncomment the assert below for efaust's undying gratitude.
+ // Note that we use .name here because of CCW nonsense.
+ assertEq(frame.eval('new.target').throw.unsafeDereference().name, "SyntaxError");
+ // assertEq(frame.eval('new.target').return.unsafeDereference(), expected);
+ }
+ };
+
+ g.eval("" + function f(d) { new g(d, g, 15); });
+
+ g.eval("" + function g(d, expected) { (() => toggle(d, expected))(); });
+
+ g.eval("(" + function test() {
+ for (var i = 0; i < 5; i++)
+ f(false);
+ f(true);
+ } + ")();");
+});