HomeSort by relevance Sort by last modified time
    Searched full:constructtrap (Results 1 - 8 of 8) sorted by null

  /external/v8/src/
proxy.js 44 $Proxy.createFunction = function(handler, callTrap, constructTrap) {
49 if (IS_UNDEFINED(constructTrap)) {
50 constructTrap = DerivedConstructTrap(callTrap)
51 } else if (IS_SPEC_FUNCTION(constructTrap)) {
53 var construct = constructTrap
54 constructTrap = function() {
62 handler, callTrap, constructTrap, $Function.prototype)
82 function DelegateCallAndConstruct(callTrap, constructTrap) {
84 return %Apply(%_IsConstructCall() ? constructTrap : callTrap,
v8natives.js     [all...]
  /external/chromium_org/v8/src/
proxy.js 48 function ProxyCreateFunction(handler, callTrap, constructTrap) {
53 if (IS_UNDEFINED(constructTrap)) {
54 constructTrap = DerivedConstructTrap(callTrap)
55 } else if (IS_SPEC_FUNCTION(constructTrap)) {
57 var construct = constructTrap
58 constructTrap = function() {
66 handler, callTrap, constructTrap, $Function.prototype)
100 function DelegateCallAndConstruct(callTrap, constructTrap) {
102 return %Apply(%_IsConstructCall() ? constructTrap : callTrap,
v8natives.js     [all...]
  /external/chromium_org/v8/test/mjsunit/harmony/
proxies-example-membrane.js 179 function constructTrap() {
188 return Proxy.createFunction(handler, callTrap, constructTrap);
343 function constructTrap() {
348 Proxy.createFunction(dryRevokeHandler, callTrap, constructTrap);
410 function constructTrap() {
415 Proxy.createFunction(wetRevokeHandler, callTrap, constructTrap);
proxies-function.js 33 function CreateFrozen(handler, callTrap, constructTrap) {
35 var f = Proxy.createFunction(handler, callTrap, constructTrap)
362 function TestConstruct(proto, constructTrap) {
363 TestConstruct2(proto, constructTrap, handlerWithPrototype)
364 TestConstruct2(proto, constructTrap, handlerSansPrototype)
367 function TestConstruct2(proto, constructTrap, handler) {
368 var f = Proxy.createFunction(handler, function() {}, constructTrap)
374 var f = CreateFrozen(handler, function() {}, constructTrap)
  /external/v8/test/mjsunit/harmony/
proxies-example-membrane.js 179 function constructTrap() {
188 return Proxy.createFunction(handler, callTrap, constructTrap);
343 function constructTrap() {
348 Proxy.createFunction(dryRevokeHandler, callTrap, constructTrap);
410 function constructTrap() {
415 Proxy.createFunction(wetRevokeHandler, callTrap, constructTrap);
proxies-function.js 33 function CreateFrozen(handler, callTrap, constructTrap) {
35 var f = Proxy.createFunction(handler, callTrap, constructTrap)
362 function TestConstruct(proto, constructTrap) {
363 TestConstruct2(proto, constructTrap, handlerWithPrototype)
364 TestConstruct2(proto, constructTrap, handlerSansPrototype)
367 function TestConstruct2(proto, constructTrap, handler) {
368 var f = Proxy.createFunction(handler, function() {}, constructTrap)
374 var f = CreateFrozen(handler, function() {}, constructTrap)

Completed in 861 milliseconds