Lines Matching refs:callTrap
33 function CreateFrozen(handler, callTrap, constructTrap) { argument
35 var f = Proxy.createFunction(handler, callTrap, constructTrap)
54 function TestCall(isStrict, callTrap) { argument
55 assertEquals(42, callTrap(5, 37))
63 var f = Proxy.createFunction(handler, callTrap)
190 var f = CreateFrozen({}, callTrap)
260 function TestCallIntrinsic(type, callTrap) { argument
261 var f = Proxy.createFunction({}, callTrap)
276 function TestCallThrow(callTrap) { argument
277 var f = Proxy.createFunction({}, callTrap)
290 var f = CreateFrozen({}, callTrap)
392 function TestConstructFromCall(proto, returnsThis, callTrap) { argument
393 TestConstructFromCall2(prototype, returnsThis, callTrap, handlerWithPrototype)
394 TestConstructFromCall2(proto, returnsThis, callTrap, handlerSansPrototype)
397 function TestConstructFromCall2(proto, returnsThis, callTrap, handler) { argument
400 var f = Proxy.createFunction(handler, callTrap)
406 var g = CreateFrozen(handler, callTrap)