blob: 04115344b2197e8bf3f22d1b7af9de9bec72053e (
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({newCompartment: true});
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);
|