summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/Script-gc-03.js
blob: ab53203239b1d683871b5a8e2051adabb25bf680 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Referents of Debugger.Scripts 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.script); };
g.eval("for (var i = 0; i < 100; i++) Function('debugger;')();");
assertEq(arr.length, 100);

gc(g);

for (var i = 0; i < arr.length; i++)
    assertEq(arr[i].lineCount, 4);

gc();