blob: 56cae455707e58815e0da628b73987842e69e0dc (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* Exercise the path where we want to collect a new compartment in the middle of incremental GC. */
var g1 = newGlobal();
var g2 = newGlobal();
schedulegc(g1);
gcslice(0); // Start IGC, but don't mark anything.
schedulegc(g2);
gcslice(1);
gcslice();
|