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

Quellcode-Bibliothek Frame-onStep-14.js   Sprache: JAVA

 
// Test how stepping interacts with switch statements.

var g = newGlobal({newCompartment: true});

g.eval('function bob() { return "bob"; }');

// Stepping into a sparse switch should not stop on literal cases.
evaluate(`function lit(x) {     // 1
  debugger;                     // 2
  switch(x) {                   // 3
  case "nope":                  // 4
    break;                      // 5
  case "bob":                   // 6
    break;                      // 7
  }                             // 8
}`, {lineNumber: 1, global: g});

// Stepping into a sparse switch should stop on non-literal cases.
evaluate(`function nonlit(x) {  // 1
  debugger;                     // 2
  switch(x) {                   // 3
  case bob():                   // 4
    break;                      // 5
  }                             // 6
}`, {lineNumber: 1, global: g});

var dbg = Debugger(g);
var badStep = false;

function test(s, okLine) {
  dbg.onDebuggerStatement = function(frame) {
    frame.onStep = function() {
      let thisLine = this.script.getOffsetLocation(this.offset).lineNumber;
      // The stop at line 3 is the switch.
      if (thisLine > 3) {
        assertEq(thisLine, okLine)
        frame.onStep = undefined;
      }
    };
  };
  g.eval(s);
}

test("lit('bob');", 7);

test("nonlit('bob');", 4);

Messung V0.5
C=96 H=88 G=91

¤ 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.0.11Bemerkung:  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

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.