tor-browser

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

after-same-line-static-gen-rs-private-getter-alt.js (2830B)


      1 // This file was procedurally generated from the following sources:
      2 // - src/class-elements/rs-private-getter-alt.case
      3 // - src/class-elements/productions/cls-decl-after-same-line-static-gen.template
      4 /*---
      5 description: Valid PrivateName as private getter (field definitions after a static generator in the same line)
      6 esid: prod-FieldDefinition
      7 features: [class-methods-private, class-fields-private, generators, class, class-fields-public]
      8 flags: [generated]
      9 includes: [propertyHelper.js]
     10 info: |
     11    ClassElement :
     12      MethodDefinition
     13      ...
     14      ;
     15 
     16    MethodDefinition :
     17      ...
     18      get ClassElementName ( ){ FunctionBody }
     19      ...
     20 
     21    ClassElementName :
     22      PropertyName
     23      PrivateName
     24 
     25    PrivateName ::
     26      # IdentifierName
     27 
     28    IdentifierName ::
     29      IdentifierStart
     30      IdentifierName IdentifierPart
     31 
     32    IdentifierStart ::
     33      UnicodeIDStart
     34      $
     35      _
     36      \ UnicodeEscapeSequence
     37 
     38    IdentifierPart::
     39      UnicodeIDContinue
     40      $
     41      \ UnicodeEscapeSequence
     42      <ZWNJ> <ZWJ>
     43 
     44    UnicodeIDStart::
     45      any Unicode code point with the Unicode property "ID_Start"
     46 
     47    UnicodeIDContinue::
     48      any Unicode code point with the Unicode property "ID_Continue"
     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 class C {
     59  static *m() { return 42; } #$_; #__; #\u{6F}_; #℘_; #ZW__NJ_; #ZW__J_;
     60  get #$() {
     61    return this.#$_;
     62  }
     63  get #_() {
     64    return this.#__;
     65  }
     66  get #\u{6F}() {
     67    return this.#\u{6F}_;
     68  }
     69  get #℘() {
     70    return this.#℘_;
     71  }
     72  get #ZW__NJ() {
     73    return this.#ZW__NJ_;
     74  }
     75  get #ZW__J() {
     76    return this.#ZW__J_;
     77  }
     78 ;
     79  $(value) {
     80    this.#$_ = value;
     81    return this.#$;
     82  }
     83  _(value) {
     84    this.#__ = value;
     85    return this.#_;
     86  }
     87  \u{6F}(value) {
     88    this.#\u{6F}_ = value;
     89    return this.#\u{6F};
     90  }
     91  (value) {
     92    this.#℘_ = value;
     93    return this.#℘;
     94  }
     95  ZW_‌_NJ(value) {
     96    this.#ZW__NJ_ = value;
     97    return this.#ZW__NJ;
     98  }
     99  ZW_‍_J(value) {
    100    this.#ZW__J_ = value;
    101    return this.#ZW__J;
    102  }
    103 
    104 }
    105 
    106 var c = new C();
    107 
    108 assert.sameValue(C.m().next().value, 42);
    109 assert(
    110  !Object.prototype.hasOwnProperty.call(c, "m"),
    111  "m doesn't appear as an own property on the C instance"
    112 );
    113 assert(
    114  !Object.prototype.hasOwnProperty.call(C.prototype, "m"),
    115  "m doesn't appear as an own property on the C prototype"
    116 );
    117 
    118 verifyProperty(C, "m", {
    119  enumerable: false,
    120  configurable: true,
    121  writable: true,
    122 });
    123 
    124 assert.sameValue(c.$(1), 1);
    125 assert.sameValue(c._(1), 1);
    126 assert.sameValue(c.\u{6F}(1), 1);
    127 assert.sameValue(c.(1), 1);
    128 assert.sameValue(c.ZW_‌_NJ(1), 1);
    129 assert.sameValue(c.ZW_‍_J(1), 1);
    130 
    131 reportCompare(0, 0);