Source code

Revision control

Copy as Markdown

Other Tools

// Any copyright is dedicated to the Public Domain.
var gTestfile = "parse-array-gc.js";
//-----------------------------------------------------------------------------
var BUGNUMBER = 852563;
var summary =
"IdValuePair::value should be initialized to avoid GC sequence-point issues";
print(BUGNUMBER + ": " + summary);
print("Note: You must run this test under valgrind to be certain it passes");
/**************
* BEGIN TEST *
**************/
var x;
if (typeof gczeal === "function")
gczeal(2, 1);
x = JSON.parse('{"foo":[]}');
Object.getPrototypeOf(x.foo) == Array.prototype;
x = JSON.parse('{"foo":[], "bar":[]}');
/******************************************************************************/
if (typeof reportCompare === "function")
reportCompare(true, true);
if (typeof gczeal === "function")
gczeal(0);
print("Tests complete");