tor-browser

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

wrapped-in-sc-rs-static-privatename-identifier-alt-by-classname.js (2426B)


      1 // This file was procedurally generated from the following sources:
      2 // - src/class-elements/rs-static-privatename-identifier-alt-by-classname.case
      3 // - src/class-elements/productions/cls-expr-wrapped-in-sc.template
      4 /*---
      5 description: Valid Static PrivateName (fields definition wrapped in semicolons)
      6 esid: prod-FieldDefinition
      7 features: [class-static-fields-private, class, class-fields-public]
      8 flags: [generated]
      9 info: |
     10    ClassElement :
     11      MethodDefinition
     12      static MethodDefinition
     13      FieldDefinition ;
     14      static FieldDefinition ;
     15      ;
     16 
     17    FieldDefinition :
     18      ClassElementName Initializer _opt
     19 
     20    ClassElementName :
     21      PropertyName
     22      PrivateName
     23 
     24    PrivateName ::
     25      # IdentifierName
     26 
     27    IdentifierName ::
     28      IdentifierStart
     29      IdentifierName IdentifierPart
     30 
     31    IdentifierStart ::
     32      UnicodeIDStart
     33      $
     34      _
     35      \ UnicodeEscapeSequence
     36 
     37    IdentifierPart::
     38      UnicodeIDContinue
     39      $
     40      \ UnicodeEscapeSequence
     41      <ZWNJ> <ZWJ>
     42 
     43    UnicodeIDStart::
     44      any Unicode code point with the Unicode property "ID_Start"
     45 
     46    UnicodeIDContinue::
     47      any Unicode code point with the Unicode property "ID_Continue"
     48 
     49 
     50    NOTE 3
     51    The sets of code points with Unicode properties "ID_Start" and
     52    "ID_Continue" include, respectively, the code points with Unicode
     53    properties "Other_ID_Start" and "Other_ID_Continue".
     54 
     55 ---*/
     56 
     57 
     58 var C = class {
     59  ;;;;
     60  ;;;;;;static #$; static #_; static #\u{6F}; static #℘; static #ZW__NJ; static #ZW__J;;;;;;;
     61  ;;;;
     62  static $(value) {
     63    C.#$ = value;
     64    return C.#$;
     65  }
     66  static _(value) {
     67    C.#_ = value;
     68    return C.#_;
     69  }
     70  static o(value) {
     71    C.#\u{6F} = value;
     72    return C.#\u{6F};
     73  }
     74  static (value) { // DO NOT CHANGE THE NAME OF THIS FIELD
     75    C.#℘ = value;
     76    return C.#℘;
     77  }
     78  static ZW_‌_NJ(value) { // DO NOT CHANGE THE NAME OF THIS FIELD
     79    C.#ZW__NJ = value;
     80    return C.#ZW__NJ;
     81  }
     82  static ZW_‍_J(value) { // DO NOT CHANGE THE NAME OF THIS FIELD
     83    C.#ZW__J = value;
     84    return C.#ZW__J;
     85  }
     86 }
     87 
     88 var c = new C();
     89 
     90 assert.sameValue(C.$(1), 1);
     91 assert.sameValue(C._(1), 1);
     92 assert.sameValue(C.o(1), 1);
     93 assert.sameValue(C.(1), 1);      // DO NOT CHANGE THE NAME OF THIS FIELD
     94 assert.sameValue(C.ZW_‌_NJ(1), 1); // DO NOT CHANGE THE NAME OF THIS FIELD
     95 assert.sameValue(C.ZW_‍_J(1), 1);  // DO NOT CHANGE THE NAME OF THIS FIELD
     96 
     97 
     98 reportCompare(0, 0);