Bug 854419 - Fix ecma_5/JSON/parse-array-gc.js to work in non-debug builds. r=sparky as trivial

--HG--
extra : rebase_source : 7851f45d986d0045f30c56a2993e1b33de8fe573
This commit is contained in:
Jeff Walden 2013-03-25 14:16:31 -07:00
Родитель f2f6a4c72a
Коммит d786bde8e3
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -17,7 +17,8 @@ print("Note: You must run this test under valgrind to be certain it passes");
var x;
gczeal(2, 1);
if (typeof gczeal === "function")
gczeal(2, 1);
x = JSON.parse('{"foo":[]}');
Object.getPrototypeOf(x.foo) == Array.prototype;
x = JSON.parse('{"foo":[], "bar":[]}');