Searched defs:complexArrayWithProto (Results 1 - 1 of 1) sorted by relevance

/external/webkit/LayoutTests/fast/js/resources/
H A DJSON-stringify.js10 var complexArrayWithProto = ['d', 'e', 'f',,,simpleObjectWithProto, simpleArrayWithProto, [simpleObjectWithProto,simpleArrayWithProto]]; variable
11 complexArrayWithProto.__proto__ = simpleObjectWithProto;
12 var complexObjectWithProto = {d:"4", e:"5", f:"6", g:undefined, h:null, "":12, get i(){ return simpleArrayWithProto; }, array2: complexArrayWithProto, __proto__:complexObject};
286 return jsonObject.stringify(complexArrayWithProto, null, " ");
289 return jsonObject.stringify(complexArrayWithProto, null, 4);
292 return jsonObject.stringify(complexArrayWithProto, null, "ab");
295 return jsonObject.stringify(complexArrayWithProto, null, 4);

Completed in 41 milliseconds