summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Script-getChildScripts-01.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/debug/Script-getChildScripts-01.js')
-rw-r--r--js/src/jit-test/tests/debug/Script-getChildScripts-01.js40
1 files changed, 40 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/debug/Script-getChildScripts-01.js b/js/src/jit-test/tests/debug/Script-getChildScripts-01.js
new file mode 100644
index 0000000000..99f9cf5b36
--- /dev/null
+++ b/js/src/jit-test/tests/debug/Script-getChildScripts-01.js
@@ -0,0 +1,40 @@
+// Basic getChildScripts tests.
+
+var g = newGlobal({newCompartment: true});
+var dbg = new Debugger(g);
+var log;
+function note(s) {
+ assertEq(s instanceof Debugger.Script, true);
+ log += 'S';
+ var c = s.getChildScripts();
+ if (c.length > 0) {
+ log += '[';
+ for (var i = 0; i < c.length; i++)
+ note(c[i]);
+ log += ']';
+ }
+}
+dbg.onDebuggerStatement = function (frame) { note(frame.script); };
+
+function test(code, expected) {
+ log = '';
+ g.eval(code);
+ assertEq(log, expected);
+}
+
+test("debugger;",
+ "S");
+test("function f() {} debugger;",
+ "S[S]");
+test("function g() { function h() { function k() {} return k; } return h; } debugger;",
+ "S[S[S[S]]]");
+test("function q() {} function qq() {} debugger;",
+ "S[SS]");
+test("[0].map(function id(a) { return a; }); debugger;",
+ "S[S]");
+test("Function('return 2+2;')(); debugger;",
+ "S");
+test("var obj = {get x() { return 0; }, set x(v) {}}; debugger;",
+ "S[SS]");
+test("function* qux(n) { for (var i = 0; i < n; i++) yield i; } debugger;",
+ "S[S]");