Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/js/src/jit-test/tests/debug/   (Firefox Browser Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  breakpoint-dot-generator.js

  Sprache: JAVA
 

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, {});

// Offset 1 shouldn't be exposed.
assertEq(script.getPossibleBreakpoints().some(p => p.offset == 1), false);
assertEq(script.getAllColumnOffsets().some(p => p.offset == 1), false);
assertEq(script.getEffectfulOffsets().includes(1), false);

Messung V0.5 in Prozent
C=95 H=88 G=91

¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet am  2026-06-06) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

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.