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


Quellcode-Bibliothek yield.js   Sprache: JAVA

 
var BUGNUMBER = 1185106;
var summary = "yield handling in async function";

print(BUGNUMBER + ": " + summary);

function testPassArgsBody(argsbody) {
    Reflect.parse(`async function a${argsbody}`);
    Reflect.parse(`(async function a${argsbody})`);
    Reflect.parse(`(async function ${argsbody})`);
    Reflect.parse(`({ async m${argsbody} })`);
}

function testErrorArgsBody(argsbody, prefix="") {
    assertThrowsInstanceOf(() => Reflect.parse(`${prefix} async function a${argsbody}`), SyntaxError);
    assertThrowsInstanceOf(() => Reflect.parse(`${prefix} (async function a${argsbody})`), SyntaxError);
    assertThrowsInstanceOf(() => Reflect.parse(`${prefix} (async function ${argsbody})`), SyntaxError);
    assertThrowsInstanceOf(() => Reflect.parse(`${prefix} ({ async m${argsbody} })`), SyntaxError);
}

function testErrorArgsBodyStrict(argsbody) {
    testErrorArgsBody(argsbody);
    testErrorArgsBody(argsbody, "'use strict'; ");
    assertThrowsInstanceOf(() => Reflect.parse(`class X { async m${argsbody} }`), SyntaxError);
    assertThrowsInstanceOf(() => Reflect.parse(`class X { static async m${argsbody} }`), SyntaxError);
    assertThrowsInstanceOf(() => Reflect.parse(`export default async function ${argsbody}`, { target: "module" }), SyntaxError);
}

if (typeof Reflect !== "undefined" && Reflect.parse) {
    // `yield` handling is inherited in async function declaration name.
    Reflect.parse("async function yield() {}");
    Reflect.parse("function f() { async function yield() {} }");
    assertThrowsInstanceOf(() => Reflect.parse("function* g() { async function yield() {} }"), SyntaxError);
    assertThrowsInstanceOf(() => Reflect.parse("'use strict'; async function yield() {}"), SyntaxError);

    // `yield` is treated as an identifier in an async function expression name.
    // `yield` is not allowed as an identifier in strict code.
    Reflect.parse("(async function yield() {});");
    Reflect.parse("function f() { (async function yield() {}); }");
    Reflect.parse("function* g() { (async function yield() {}); }");
    assertThrowsInstanceOf(() => Reflect.parse("'use strict'; (async function yield() {});"), SyntaxError);

    // `yield` handling is inherited in async method name.
    Reflect.parse("({ async yield() {} });");
    Reflect.parse("function f() { ({ async yield() {} }); }");
    Reflect.parse("function* g() { ({ async yield() {} }); }");
    Reflect.parse("'use strict'; ({ async yield() {} });");
    Reflect.parse("class X { async yield() {} }");

    Reflect.parse("({ async [yield]() {} });");
    Reflect.parse("function f() { ({ async [yield]() {} }); }");
    Reflect.parse("function* g() { ({ async [yield]() {} }); }");
    assertThrowsInstanceOf(() => Reflect.parse("'use strict'; ({ async [yield]() {} });"), SyntaxError);
    assertThrowsInstanceOf(() => Reflect.parse("class X { async [yield]() {} }"), SyntaxError);

    // `yield` is treated as an identifier in an async function parameter
    // `yield` is not allowed as an identifier in strict code.
    testPassArgsBody("(yield) {}");
    testPassArgsBody("(yield = 1) {}");
    testPassArgsBody("(a = yield) {}");
    testErrorArgsBodyStrict("(yield 3) {}");
    testErrorArgsBodyStrict("(a = yield 3) {}");

    // `yield` is treated as an identifier in an async function body
    // `yield` is not allowed as an identifier in strict code.
    testPassArgsBody("() { yield; }");
    testPassArgsBody("() { yield = 1; }");
    testErrorArgsBodyStrict("() { yield 3; }");
}

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

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

¤ 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.0.16Bemerkung:  (vorverarbeitet)  ¤

*Bot Zugriff






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.