summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/gc-compartment-02.js
blob: 97cbc8c4198abde79fb11c315e6f0ef6b805b706 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Referents of Debugger.Objects in other compartments always survive per-compartment GC.

var g = newGlobal({newCompartment: true});
var dbg = Debugger(g);
var arr = [];
dbg.onDebuggerStatement = function (frame) { arr.push(frame.eval("[]").return); };
g.eval("for (var i = 0; i < 10; i++) debugger;");
assertEq(arr.length, 10);

gc(g);

for (var i = 0; i < arr.length; i++)
    assertEq(arr[i].class, "Array");