summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Frame-onPop-03.js
blob: dfd4dfcaf6ed59c944a020ebe2f485391f57b8d8 (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
// When an exception is propagated out of multiple frames, their onPop
// and onExceptionUnwind handlers are called in the correct order.
var g = newGlobal();
g.eval("function f() { throw 'mud'; }");
g.eval("function g() { f(); }");
g.eval("function h() { g(); }");
g.eval("function i() { h(); }");

var dbg = new Debugger(g);
var log;
function makePopHandler(label) {
    return function handlePop(completion) { 
        log += label;
        assertEq(completion.throw, "mud");
    };
}
dbg.onEnterFrame = function handleEnter(f) {
    log += "(" + f.callee.name;
    f.onPop = makePopHandler(")" + f.callee.name);  
};
dbg.onExceptionUnwind = function handleExceptionUnwind(f, x) {
    assertEq(x, 'mud');
    log += "u" + f.callee.name;
};
log = '';
try {
    g.i();
} catch (x) {
    log += 'c';
    assertEq(x, "mud");
}
assertEq(log, "(i(h(g(fuf)fug)guh)hui)ic");