Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
1 // Check marking through the elements of a Set.
3 load(libdir + "referencesVia.js");
5 var s = new Set;
6 for (var i = 0; i < 20; i++) {
7 var t = new Set;
8 t.add(s);
9 assertEq(referencesVia(t, 'key', s), true);
10 s = t;
11 }
13 gc();
14 gc();
16 // TODO: walk the chain and make sure it's still intact