// A "while" or a "for" loop should have a single entry point.
var g = newGlobal({newCompartment: true}); var dbg = new Debugger(g);
dbg.onDebuggerStatement = function(frame) { var s = frame.eval('f').return.script;
// There should be just a single entry point for the first line of // the function. See below to understand the "+2".
assertEq(s.getLineOffsets(g.line0 + 2).length, 1);
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.