tor-browser

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

left-hand-side-private-reference-accessor-property-nullish.js (2127B)


      1 // This file was procedurally generated from the following sources:
      2 // - src/logical-assignment-private/nullish.case
      3 // - src/logical-assignment-private/default/getter-setter.template
      4 /*---
      5 description: Nullish-coalescing assignment with target being a private reference (to an accessor property with getter and setter)
      6 esid: sec-assignment-operators-runtime-semantics-evaluation
      7 features: [class-fields-private, logical-assignment-operators]
      8 flags: [generated]
      9 info: |
     10    sec-property-accessors-runtime-semantics-evaluation
     11    MemberExpression : MemberExpression `.` PrivateIdentifier
     12 
     13      1. Let _baseReference_ be the result of evaluating |MemberExpression|.
     14      2. Let _baseValue_ be ? GetValue(_baseReference_).
     15      3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
     16      4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
     17 
     18    PutValue (V, W)
     19      ...
     20      5.b. If IsPrivateReference(_V_) is *true*, then
     21        i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
     22 
     23    PrivateSet (O, P, value)
     24      ...
     25      5.a. Assert: _entry_.[[Kind]] is ~accessor~.
     26      ...
     27      5.c. Let _setter_ be _entry_.[[Set]].
     28      d. Perform ? Call(_setter_, _O_, « _value_ »).
     29 
     30 
     31    sec-assignment-operators-runtime-semantics-evaluation
     32    AssignmentExpression : LeftHandSideExpression ??= AssignmentExpression
     33      1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
     34      2. Let _lval_ be ? GetValue(_lref_).
     35      3. If _lval_ is neither *undefined* nor *null*, return _lval_.
     36      ...
     37      6. Perform ? PutValue(_lref_, _rval_).
     38      7. Return _rval_.
     39 ---*/
     40 
     41 
     42 class C {
     43  #setterCalledWith;
     44  get #field() {
     45    return null;
     46  }
     47  set #field(value) {
     48    this.#setterCalledWith = value;
     49  }
     50  compoundAssignment() {
     51    return this.#field ??= 1;
     52  }
     53  setterCalledWithValue() {
     54    return this.#setterCalledWith;
     55  }
     56 }
     57 
     58 const o = new C();
     59 assert.sameValue(o.compoundAssignment(), 1, "The expression should evaluate to the result");
     60 assert.sameValue(o.setterCalledWithValue(), 1, "PutValue should call the setter with the result");
     61 
     62 reportCompare(0, 0);