~ubuntu-branches/ubuntu/saucy/mozjs17/saucy-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Frame.script/offset and Script.getOffsetLine work in non-top frames.

var g = newGlobal('new-compartment');
var dbg = Debugger(g);
var hits = 0;
dbg.onDebuggerStatement = function (frame) {
    var a = [];
    for (; frame.type == "call"; frame = frame.older)
        a.push(frame.script.getOffsetLine(frame.offset) - g.line0);
    assertEq(a.join(","), "1,2,3,4");
    hits++;
};
g.eval("var line0 = Error().lineNumber;\n" +
       "function f0() { debugger; }\n" +
       "function f1() { f0(); }\n" +
       "function f2() { f1(); }\n" +
       "function f3() { f2(); }\n" +
       "f3();\n");
assertEq(hits, 1);