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 949 B image not shown  

Quelle  Frame-onPop-async-01.js   Sprache: JAVA

 
// When an async function awaits, if Frame.onPop processes microtasks,
// the async function itself will not run. It'll run later.
//
// This is a reentrancy test, like Frame-onPop-generators-03.

let g = newGlobal({newCompartment: true});
g.log = "";
g.eval(`
  async function f() {
    log += "1";
    debugger;
    log += "2";
    await Promise.resolve(3);
    log += "3";
    return "ok";
  }
`);

let dbg = Debugger(g);
dbg.onDebuggerStatement = frame => {
  frame.onPop = completion => {
    // What we are really testing is that when onPop is called, we have not
    // yet thrown this async function activation back into the hopper.
    g.log += 'A';
    drainJobQueue();
    g.log += 'B';

    frame.onPop = completion => {
      g.log += 'C';
    };
  };
};

let status = "FAIL - g.f() did not resolve";
g.f().then(value => { status = value; });
assertEq(g.log, "12AB");
drainJobQueue();
assertEq(g.log, "12AB3C");
assertEq(status, "ok");

Messung V0.5
C=92 H=95 G=93

¤ Dauer der Verarbeitung: 0.0 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.