summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Debugger-findScripts-04.js
blob: 8d81d5174e715f423a164d69421932ffb082d7d1 (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
// 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');