Lines Matching refs:handler
34 $Proxy.create = function(handler, proto) {
35 if (!IS_SPEC_OBJECT(handler))
41 return %CreateJSProxy(handler, proto)
44 $Proxy.createFunction = function(handler, callTrap, constructTrap) {
45 if (!IS_SPEC_OBJECT(handler))
62 handler, callTrap, constructTrap, $Function.prototype)
183 var handler = %GetHandler(proxy)
184 if (IS_UNDEFINED(handler.enumerate)) {
185 return %Apply(DerivedEnumerateTrap, handler, [], 0, 0)
187 return ToStringArray(handler.enumerate(), "enumerate")