Searched refs:CreateFrozen (Results 1 – 1 of 1) sorted by relevance
/external/v8/test/mjsunit/harmony/ |
D | proxies-function.js | 33 function CreateFrozen(handler, callTrap, constructTrap) { class 190 var f = CreateFrozen({}, callTrap) 251 TestCall(false, CreateFrozen(handler, function(x, y) { 290 var f = CreateFrozen({}, callTrap) 306 TestCallThrow(CreateFrozen({}, function() { throw "myexn" })) 372 var f = CreateFrozen(handler, function() {}, constructTrap) 385 TestConstruct(Object.prototype, CreateFrozen(handler, ReturnNew)) 386 TestConstruct(prototype, CreateFrozen(handler, ReturnNewWithProto)) 406 var g = CreateFrozen(handler, callTrap) 428 TestConstructFromCall(Object.prototype, true, CreateFrozen({}, ReturnUndef)) [all …]
|