summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Script-getChildScripts-01.js
blob: 99f9cf5b360a0d48bfd8c839f1ee1e7154bc73dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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]");