Searched refs:testObjectMirror (Results 1 – 1 of 1) sorted by relevance
/external/v8/test/mjsunit/ |
D | mirror-object.js | 43 function testObjectMirror(obj, cls_name, ctor_name, hasSpecialProperties) { function 179 testObjectMirror({}, 'Object', 'Object'); 180 testObjectMirror({'a':1,'b':2}, 'Object', 'Object'); 181 testObjectMirror({'1':void 0,'2':null,'f':function pow(x,y){return Math.pow(x,y);}}, 'Object', 'Obj… 182 testObjectMirror(new Point(-1.2,2.003), 'Object', 'Point'); 183 testObjectMirror(this, 'global', '', true); // Global object has special properties 184 testObjectMirror(this.__proto__, 'Object', ''); 185 testObjectMirror([], 'Array', 'Array'); 186 testObjectMirror([1,2], 'Array', 'Array'); 187 testObjectMirror(Object(17), 'Number', 'Number'); [all …]
|