tor-browser

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

new-no-sc-line-method-rs-privatename-identifier-alt.js (2429B)


      1 // This file was procedurally generated from the following sources:
      2 // - src/class-elements/rs-privatename-identifier-alt.case
      3 // - src/class-elements/productions/cls-expr-new-no-sc-line-method.template
      4 /*---
      5 description: Valid PrivateName (field definitions followed by a method in a new line without a semicolon)
      6 esid: prod-FieldDefinition
      7 features: [class-fields-private, class, class-fields-public]
      8 flags: [generated]
      9 includes: [propertyHelper.js]
     10 info: |
     11    ClassElement :
     12      MethodDefinition
     13      static MethodDefinition
     14      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  #$; #_; #\u{6F}; #℘; #ZW__NJ; #ZW__J
     60  m() { return 42; }
     61  $(value) {
     62    this.#$ = value;
     63    return this.#$;
     64  }
     65  _(value) {
     66    this.#_ = value;
     67    return this.#_;
     68  }
     69  \u{6F}(value) {
     70    this.#\u{6F} = value;
     71    return this.#\u{6F};
     72  }
     73  (value) {
     74    this.#℘ = value;
     75    return this.#℘;
     76  }
     77  ZW_‌_NJ(value) {
     78    this.#ZW__NJ = value;
     79    return this.#ZW__NJ;
     80  }
     81  ZW_‍_J(value) {
     82    this.#ZW__J = value;
     83    return this.#ZW__J;
     84  }
     85 }
     86 
     87 var c = new C();
     88 
     89 assert.sameValue(c.m(), 42);
     90 assert.sameValue(c.m, C.prototype.m);
     91 assert(
     92  !Object.prototype.hasOwnProperty.call(c, "m"),
     93  "m doesn't appear as an own property on the C instance"
     94 );
     95 
     96 verifyProperty(C.prototype, "m", {
     97  enumerable: false,
     98  configurable: true,
     99  writable: true,
    100 });
    101 
    102 assert.sameValue(c.$(1), 1);
    103 assert.sameValue(c._(1), 1);
    104 assert.sameValue(c.\u{6F}(1), 1);
    105 assert.sameValue(c.(1), 1);
    106 assert.sameValue(c.ZW_‌_NJ(1), 1);
    107 assert.sameValue(c.ZW_‍_J(1), 1);
    108 
    109 
    110 reportCompare(0, 0);