tor-browser

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

multiple-stacked-definitions-rs-static-async-method-privatename-identifier-alt.js (3819B)


      1 // |reftest| async
      2 // This file was procedurally generated from the following sources:
      3 // - src/class-elements/rs-static-async-method-privatename-identifier-alt.case
      4 // - src/class-elements/productions/cls-expr-multiple-stacked-definitions.template
      5 /*---
      6 description: Valid Static AsyncMethod PrivateName (multiple stacked fields definitions through ASI)
      7 esid: prod-FieldDefinition
      8 features: [class-static-methods-private, class, class-fields-public]
      9 flags: [generated, async]
     10 includes: [propertyHelper.js]
     11 info: |
     12    ClassElement :
     13      MethodDefinition
     14      static MethodDefinition
     15      FieldDefinition ;
     16      static FieldDefinition ;
     17      ;
     18 
     19    MethodDefinition :
     20      AsyncMethod
     21 
     22    AsyncMethod :
     23      async [no LineTerminator here] ClassElementName ( UniqueFormalParameters ){ AsyncFunctionBody }
     24 
     25    ClassElementName :
     26      PropertyName
     27      PrivateName
     28 
     29    PrivateName ::
     30      # IdentifierName
     31 
     32    IdentifierName ::
     33      IdentifierStart
     34      IdentifierName IdentifierPart
     35 
     36    IdentifierStart ::
     37      UnicodeIDStart
     38      $
     39      _
     40      \ UnicodeEscapeSequence
     41 
     42    IdentifierPart::
     43      UnicodeIDContinue
     44      $
     45      \ UnicodeEscapeSequence
     46      <ZWNJ> <ZWJ>
     47 
     48    UnicodeIDStart::
     49      any Unicode code point with the Unicode property "ID_Start"
     50 
     51    UnicodeIDContinue::
     52      any Unicode code point with the Unicode property "ID_Continue"
     53 
     54 
     55    NOTE 3
     56    The sets of code points with Unicode properties "ID_Start" and
     57    "ID_Continue" include, respectively, the code points with Unicode
     58    properties "Other_ID_Start" and "Other_ID_Continue".
     59 
     60 ---*/
     61 
     62 
     63 var C = class {
     64  static async #$(value) {
     65    return await value;
     66  }
     67  static async #_(value) {
     68    return await value;
     69  }
     70  static async #o(value) {
     71    return await value;
     72  }
     73  static async #℘(value) {
     74    return await value;
     75  }
     76  static async #ZW__NJ(value) {
     77    return await value;
     78  }
     79  static async #ZW__J(value) {
     80    return await value;
     81  }
     82  foo = "foobar"
     83  bar = "barbaz";
     84  static async $(value) {
     85    return await this.#$(value);
     86  }
     87  static async _(value) {
     88    return await this.#_(value);
     89  }
     90  static async o(value) {
     91    return await this.#o(value);
     92  }
     93  static async (value) { // DO NOT CHANGE THE NAME OF THIS FIELD
     94    return await this.#℘(value);
     95  }
     96  static async ZW_‌_NJ(value) { // DO NOT CHANGE THE NAME OF THIS FIELD
     97    return await this.#ZW__NJ(value);
     98  }
     99  static async ZW_‍_J(value) { // DO NOT CHANGE THE NAME OF THIS FIELD
    100    return await this.#ZW__J(value);
    101  }
    102 
    103 }
    104 
    105 var c = new C();
    106 
    107 assert.sameValue(c.foo, "foobar");
    108 assert(
    109  !Object.prototype.hasOwnProperty.call(C, "foo"),
    110  "foo doesn't appear as an own property on the C constructor"
    111 );
    112 assert(
    113  !Object.prototype.hasOwnProperty.call(C.prototype, "foo"),
    114  "foo doesn't appear as an own property on the C prototype"
    115 );
    116 
    117 verifyProperty(c, "foo", {
    118  value: "foobar",
    119  enumerable: true,
    120  configurable: true,
    121  writable: true,
    122 });
    123 
    124 assert.sameValue(c.bar, "barbaz");
    125 assert(
    126  !Object.prototype.hasOwnProperty.call(C, "bar"),
    127  "bar doesn't appear as an own property on the C constructor"
    128 );
    129 assert(
    130  !Object.prototype.hasOwnProperty.call(C.prototype, "bar"),
    131  "bar doesn't appear as an own property on the C prototype"
    132 );
    133 
    134 verifyProperty(c, "bar", {
    135  value: "barbaz",
    136  enumerable: true,
    137  configurable: true,
    138  writable: true,
    139 });
    140 
    141 Promise.all([
    142  C.$(1),
    143  C._(1),
    144  C.o(1),
    145  C.(1), // DO NOT CHANGE THE NAME OF THIS FIELD
    146  C.ZW_‌_NJ(1), // DO NOT CHANGE THE NAME OF THIS FIELD
    147  C.ZW_‍_J(1), // DO NOT CHANGE THE NAME OF THIS FIELD
    148 ]).then(results => {
    149 
    150  assert.sameValue(results[0], 1);
    151  assert.sameValue(results[1], 1);
    152  assert.sameValue(results[2], 1);
    153  assert.sameValue(results[3], 1);
    154  assert.sameValue(results[4], 1);
    155  assert.sameValue(results[5], 1);
    156 
    157 }).then($DONE, $DONE);