summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Debugger-findScripts-04.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/debug/Debugger-findScripts-04.js')
-rw-r--r--js/src/jit-test/tests/debug/Debugger-findScripts-04.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/debug/Debugger-findScripts-04.js b/js/src/jit-test/tests/debug/Debugger-findScripts-04.js
new file mode 100644
index 0000000000..8d81d5174e
--- /dev/null
+++ b/js/src/jit-test/tests/debug/Debugger-findScripts-04.js
@@ -0,0 +1,27 @@
+// Within a series of evals and calls, all their frames' scripts appear in findScripts' result.
+var g = newGlobal({newCompartment: true});
+var dbg = new Debugger(g);
+var log;
+
+g.check = function () {
+ log += 'c';
+ var scripts = dbg.findScripts();
+
+ var innerEvalFrame = dbg.getNewestFrame();
+ assertEq(innerEvalFrame.type, "eval");
+ assertEq(scripts.indexOf(innerEvalFrame.script) != -1, true);
+
+ var callFrame = innerEvalFrame.older;
+ assertEq(callFrame.type, "call");
+ assertEq(scripts.indexOf(callFrame.script) != -1, true);
+
+ var outerEvalFrame = callFrame.older;
+ assertEq(outerEvalFrame.type, "eval");
+ assertEq(scripts.indexOf(outerEvalFrame.script) != -1, true);
+ assertEq(innerEvalFrame != outerEvalFrame, true);
+};
+
+g.eval('function f() { eval("check();") }');
+log = '';
+g.eval('f();');
+assertEq(log, 'c');