Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 


Quelle  Script-getLineOffsets-05.js   Sprache: JAVA

 
// getLineOffsets identifies multiple ways to land on a line.

var g = newGlobal({newCompartment: true});
g.line0 = null;
var dbg = Debugger(g);
var where;
dbg.onDebuggerStatement = function (frame) {
    var s = frame.script, lineno, offs;

    lineno = g.line0 + where;
    offs = s.getLineOffsets(lineno);
    for (var i = 0; i < offs.length; i++) {
        assertEq(s.getOffsetLocation(offs[i]).lineNumber, lineno);
        s.setBreakpoint(offs[i], {hit: function () { g.log += 'B'; }});
    }

    lineno++;
    offs = s.getLineOffsets(lineno);
    for (var i = 0; i < offs.length; i++) {
        assertEq(s.getOffsetLocation(offs[i]).lineNumber, lineno);
        s.setBreakpoint(offs[i], {hit: function () { g.log += 'C'; }});
    }

    g.log += 'A';
};

function test(s) {
    assertEq(s.charAt(s.length - 1), '\n');
    var count = (s.split(/\n/).length - 1); // number of lines in s
    g.log = '';
    where = 1 + count;
    g.eval("line0 = Error().lineNumber;\n" +
           "debugger;\n" +          // line0 + 1
           s +                      // line0 + 2 ... line0 + where
           "log += 'D';\n");
    assertEq(g.log, 'AB!CD');
}

// if-statement with yes and no paths on a single line
g.i = 0;
test("if (i === 0)\n" +
     " log += '!'; else log += 'X';\n");
test("if (i === 2)\n" +
     " log += 'X'; else log += '!';\n");

// break to a line that has code inside and outside the loop
g.i = 2;
test("while (1) {\n" +
     " if (i === 2) break;\n" +
     " log += 'X'; } log += '!';\n");

// leaving a while loop by failing the test, when the last line has stuff both inside and outside the loop
g.i = 0;
test("while (i > 0) {\n" +
     " if (i === 70) log += 'X';\n" +
     " --i; } log += '!';\n");

// multiple case-labels on the same line
g.i = 0;
test("switch (i) {\n" +
     " case 0: case 1: log += '!'; break; }\n");
test("switch ('' + i) {\n" +
     " case '0': case '1': log += '!'; break; }\n");
test("switch (i) {\n" +
     " case 'ok' + i: case i - i: log += '!'; break; }\n");

Messung V0.5
C=88 H=74 G=80

¤ Dauer der Verarbeitung: 0.1 Sekunden  (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.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Produkte
     Quellcodebibliothek

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik

Monitoring

Montastic status badge