tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

yield-as-identifier-reference-escaped.js (956B)


      1 // |reftest| error:SyntaxError
      2 // This file was procedurally generated from the following sources:
      3 // - src/generators/yield-as-identifier-reference-escaped.case
      4 // - src/generators/syntax/class-decl-method.template
      5 /*---
      6 description: yield is a reserved keyword within generator function bodies and may not be used as an identifier reference. (Generator method as a ClassDeclaration element)
      7 esid: prod-GeneratorMethod
      8 features: [generators]
      9 flags: [generated]
     10 negative:
     11  phase: parse
     12  type: SyntaxError
     13 info: |
     14    ClassElement :
     15      MethodDefinition
     16 
     17    MethodDefinition :
     18      GeneratorMethod
     19 
     20    14.4 Generator Function Definitions
     21 
     22    GeneratorMethod :
     23      * PropertyName ( UniqueFormalParameters ) { GeneratorBody }
     24 
     25 
     26    IdentifierReference : Identifier
     27 
     28    It is a Syntax Error if this production has a [Yield] parameter and
     29    StringValue of Identifier is "yield".
     30 
     31 ---*/
     32 $DONOTEVALUATE();
     33 
     34 class C { *gen() {
     35    void yi\u0065ld;
     36 }}