summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Object-apply-04.js
blob: dd327d87ea299a9fe81a3a622d4c3003193254a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Debugger.Object.prototype.apply/call works with function proxies

var g = newGlobal();
g.eval("function f() { debugger; }");
var dbg = Debugger(g);
var hits = 0;
dbg.onDebuggerStatement = function (frame) {
    var proxy = frame.arguments[0];
    assertEq(proxy.name, undefined);
    assertEq(proxy.apply(null, [33]).return, 34);
    assertEq(proxy.call(null, 33).return, 34);
    hits++;
};
g.eval("f(new Proxy(function (arg) { return arg + 1; }, {}));");
assertEq(hits, 1);