const g = newGlobal({ newCompartment: true });
g.eval(` function* func() {
}
`); const d = new Debugger(); const dg = d.addDebuggee(g); const script = dg.makeDebuggeeValue(g.func).script;
// The following test assumes the above `func` function has the following // bytecode sequences: // // 00000: Generator # GENERATOR // 00001: SetAliasedVar ".generator" # GENERATOR // 00006: InitialYield 0 # RVAL GENERATOR RESUMEKIND
// Setting a breakpoint at `SetAliasedVar ".generator"` should be disallow.
let caught = false; try {
script.setBreakpoint(1, {});
} catch (e) {
caught = true;
assertEq(e.message.includes("not allowed"), true);
}
assertEq(caught, true);
// Setting breakpoints to other opcodes should be allowed.
script.setBreakpoint(0, {});
script.setBreakpoint(6, {});
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.