bug-2002646.js (265B)
1 var x = newGlobal({ newCompartment: true }); 2 Debugger(x).onDebuggerStatement = function (y) { 3 y.script.setBreakpoint(y.script.getLineOffsets(1)[0], { 4 hit: function () {}, 5 }); 6 }; 7 x.eval("function* g() { debugger; return; };g().next()"); 8 relazifyFunctions();