blob: ab60cf5d1fd4e70d7caca293be61075a8e57e9d1 (
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();
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);
|