Source code
Revision control
Copy as Markdown
Other Tools
fullcompartmentchecks(true);
var g = newGlobal({
newCompartment: true
});
g.eval("function*f(){debugger;yield}");
var dbg = new Debugger(g);
dbg.onDebuggerStatement = function(frame) {};
g.f().next();