Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/js/src/tests/non262/Promise/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 957 B image not shown  

Quelle  promise-all.js   Sprache: JAVA

 
// |reftest| skip-if(!xulRuntime.shell) -- needs drainJobQueue

let results = [];

let p1 = new Promise(res=>res('result'))
  .then(val=>{results.push('then ' + val); return 'first then rval';})
  .then(val=>{results.push('chained then with val: ' + val); return 'p1 then, then'});

let p2 = new Promise((res, rej)=>rej('rejection'))
  .catch(val=> {results.push('catch ' + val); return results.length;})
  .then(val=>{results.push('then after catch with val: ' + val); return 'p2 catch, then'},
        val=>{throw new Error("mustn't be called")});

Promise.all([p1, p2]).then(res => results.push(res + ''));

drainJobQueue();

assertEq(results.length, 5);
assertEq(results[0], 'then result');
assertEq(results[1], 'catch rejection');
assertEq(results[2], 'chained then with val: first then rval');
assertEq(results[3], 'then after catch with val: 2');
assertEq(results[4], 'p1 then, then,p2 catch, then');

this.reportCompare && reportCompare(true,true);

Messung V0.5
C=98 H=89 G=93

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

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