Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/js/src/tests/non262/async-functions/   (Firefox Browser Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 2 kB image not shown  

Quelle  EarlyErrors.js

  Sprache: JAVA
 

var BUGNUMBER = 1185106;
var summary = "EarlyErrors for async function";

print(BUGNUMBER + ": " + summary);

function assertThrowsSE(code) {
  assertThrowsInstanceOf(() => Reflect.parse(code), SyntaxError);
}

if (typeof Reflect !== "undefined" && Reflect.parse) {
    // If FormalParameters Contains AwaitExpression is true.
    assertThrowsSE("async function a(k = await 3) {}");
    assertThrowsSE("(async function(k = await 3) {})");
    assertThrowsSE("(async function a(k = await 3) {})");

    // If BindingIdentifier is `eval` or `arguments`.
    assertThrowsSE("'use strict'; async function eval() {}");
    assertThrowsSE("'use strict'; (async function eval() {})");

    assertThrowsSE("'use strict'; async function arguments() {}");
    assertThrowsSE("'use strict'; (async function arguments() {})");

    // If any element of the BoundNames of FormalParameters also occurs in the
    // LexicallyDeclaredNames of AsyncFunctionBody.
    assertThrowsSE("async function a(x) { let x; }");
    assertThrowsSE("(async function(x) { let x; })");
    assertThrowsSE("(async function a(x) { let x; })");

    // If FormalParameters contains SuperProperty is true.
    assertThrowsSE("async function a(k = super.prop) { }");
    assertThrowsSE("(async function(k = super.prop) {})");
    assertThrowsSE("(async function a(k = super.prop) {})");

    // If AsyncFunctionBody contains SuperProperty is true.
    assertThrowsSE("async function a() { super.prop(); }");
    assertThrowsSE("(async function() { super.prop(); })");
    assertThrowsSE("(async function a() { super.prop(); })");

    // If FormalParameters contains SuperCall is true.
    assertThrowsSE("async function a(k = super()) {}");
    assertThrowsSE("(async function(k = super()) {})");
    assertThrowsSE("(async function a(k = super()) {})");

    // If AsyncFunctionBody contains SuperCall is true.
    assertThrowsSE("async function a() { super(); }");
    assertThrowsSE("(async function() { super(); })");
    assertThrowsSE("(async function a() { super(); })");
}

if (typeof reportCompare === "function")
    reportCompare(truetrue);

Messung V0.5 in Prozent
C=85 H=100 G=92

¤ Dauer der Verarbeitung: 0.10 Sekunden  (vorverarbeitet am  2026-06-04) ¤

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