summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/baseline/bug842432.js
blob: f23198fafdf05c84e24ebd1c575692fdcb0c4592 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// |jit-test| error: fff is not
var g = newGlobal({newCompartment: true});
var dbg = new Debugger(g);

g.eval('function f(n) { if (n > 0) f(n-1); }');

dbg.onEnterFrame = function(frame) {
    frame.onPop = function() {
        fff();
    };
};

g.f(5);