Eine aufbereitete Darstellung der Quelle

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

Benutzer

Quelle  shell.js

  Sprache: JAVA
 

// SKIP test262 export

// Return a promise that will resolve to `undefined` the next time jobs are
// processed.
//
// `ticks` indicates how long the promise should "wait" before resolving: a
// promise created with `asyncSleep(n)` will become settled and fire its handlers
// before a promise created with `asyncSleep(n+1)`.
//
function asyncSleep(ticks) {
    let p = Promise.resolve();
    if (ticks > 0) {
        return p.then(() => asyncSleep(ticks - 1));
    }
    return p;
}

// Run the async function `test`. Wait for it to finish running. Throw if it
// throws or if it fails to finish (awaiting a value forever).
function runAsyncTest(test) {
    let passed = false;
    let problem = "test did not finish";
    test()
        .then(_ => { passed = true; })
        .catch(exc => { problem = exc; });
    drainJobQueue();
    if (!passed) {
        throw problem;
    }

    reportCompare(00);
}

Messung V0.5 in Prozent
C=91 H=90 G=90

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

*© 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.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Quellcodebibliothek
     Eigene Quellcodes
     Fremde Quellcodes
     Suchen

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik