blob: 30c3e8dbca594eb1852604d98ea3c77a6a479a24 (
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();
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, 3);
gc();
|