js/src/jit-test/tests/gc/multi-02.js

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:c6a11e2921d4
1 /* Exercise the path where we want to collect a new compartment in the middle of incremental GC. */
2
3 var g1 = newGlobal();
4 var g2 = newGlobal();
5
6 schedulegc(g1);
7 gcslice(0);
8 schedulegc(g2);
9 gcslice(1);
10 gcslice();

mercurial