Home
last modified time | relevance | path

Searched refs:objWithProto (Results 1 – 3 of 3) sorted by relevance

/external/v8/test/mjsunit/regress/
Dregress-2346.js103 var objWithProto = new Array(); variable
104 objWithProto.prototype = proto; class
105 objWithProto[0] = 'bar';
106 var descWithProto = Object.getOwnPropertyDescriptor(objWithProto, '10');
/external/v8/test/mjsunit/harmony/
Dreflect-get-own-property-descriptor.js103 var objWithProto = new Array(); variable
104 objWithProto.prototype = proto; class
105 objWithProto[0] = 'bar';
106 var descWithProto = Reflect.getOwnPropertyDescriptor(objWithProto, '10');
/external/v8/test/mjsunit/
Dget-own-property-descriptor.js101 var objWithProto = new Array(); variable
102 objWithProto.prototype = proto; class
103 objWithProto[0] = 'bar';
104 var descWithProto = Object.getOwnPropertyDescriptor(objWithProto, '10');