Searched refs:testObjectMirror (Results 1 - 1 of 1) sorted by relevance

/external/v8/test/mjsunit/
H A Dmirror-object.js43 function testObjectMirror(obj, cls_name, ctor_name, hasSpecialProperties) { function
167 testObjectMirror({}, 'Object', 'Object');
168 testObjectMirror({'a':1,'b':2}, 'Object', 'Object');
169 testObjectMirror({'1':void 0,'2':null,'f':function pow(x,y){return Math.pow(x,y);}}, 'Object', 'Object');
170 testObjectMirror(new Point(-1.2,2.003), 'Object', 'Point');
171 testObjectMirror(this, 'global', '', true); // Global object has special properties
172 testObjectMirror(this.__proto__, 'Object', '');
173 testObjectMirror([], 'Array', 'Array');
174 testObjectMirror([1,2], 'Array', 'Array');
179 testObjectMirror(
[all...]

Completed in 62 milliseconds