summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Frame-eval-11.js
blob: 4e76a1a5b91214bd2ff476e0829ab4e2dee54862 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// The arguments can escape from a function via a debugging hook.

var g = newGlobal({newCompartment: true});
var dbg = new Debugger(g);

// capture arguments object and test function
var hits = 0;
dbg.onDebuggerStatement = function (frame) {
    assertEq(frame.older.eval('arguments[0]').return, 'ponies');
    hits++;
};
g.eval("function g() { debugger; }");
g.eval("function f() { g(); }");
g.eval("f('ponies')");
assertEq(hits, 1);