Lines Matching refs:Proxy

35   var f = Proxy.createFunction(handler, callTrap, constructTrap)
63 var f = Proxy.createFunction(handler, callTrap)
240 TestCall(false, Proxy.createFunction(handler, function(x, y) {
245 TestCall(true, Proxy.createFunction(handler, function(x, y) {
261 var f = Proxy.createFunction({}, callTrap)
277 var f = Proxy.createFunction({}, callTrap)
305 TestCallThrow(Proxy.createFunction({}, function() { throw "myexn" }))
366 var f = Proxy.createFunction(handler, function() {}, constructTrap)
382 TestConstruct(Object.prototype, Proxy.createFunction(handler, ReturnNew))
383 TestConstruct(prototype, Proxy.createFunction(handler, ReturnNewWithProto))
400 var f = Proxy.createFunction(handler, callTrap)
420 Proxy.createFunction(handler, ReturnUndef))
422 Proxy.createFunction(handler, ReturnThis))
424 Proxy.createFunction(handler, ReturnNew))
426 Proxy.createFunction(handler, ReturnNewWithProto))
444 Proxy.createFunction(handler, ReturnUndef))
446 Proxy.createFunction(handler, ReturnThis))
448 Proxy.createFunction(handler, ReturnNew))
450 Proxy.createFunction(handler, ReturnNewWithProto))
453 Proxy.createFunction(handlerWithPrototype, ReturnUndef))
455 Proxy.createFunction(handlerWithPrototype, ReturnThis))
457 Proxy.createFunction(handlerWithPrototype, ReturnNew))
459 Proxy.createFunction(handlerWithPrototype,
476 TestConstructThrow2(Proxy.createFunction({ fix: function() {return {};} },
478 TestConstructThrow2(Proxy.createFunction({ fix: function() {return {};} },
490 TestConstructThrow(Proxy.createFunction({}, function() { throw "myexn" }))
502 var pgetter = Proxy.createFunction(handler, getterCallTrap)
503 var psetter = Proxy.createFunction(handler, setterCallTrap)
601 Proxy.createFunction({}, function() { receiver = this; return 42 }),
602 Proxy.createFunction({}, function(x) { receiver = this; value = x })
623 TestHigherOrder(Proxy.createFunction({}, function(x) { return x }))
758 var fp = Proxy.createFunction({}, Realm.shared.f);
759 var gp = Proxy.createFunction({}, Realm.shared.g);