Add tests for compound assignment to private reference

This tests compound assignment, with each compound assignment operator,
to each kind of private reference (private field, private accessor
property with getter and setter, private accessor property with only
getter, and private method). The latter two cannot be assigned to and
therefore throw.

Closes: #2940
This commit is contained in:
Philip Chimento 2022-02-11 16:54:44 -08:00 committed by Rick Waldron
parent 0b0fbdb04b
commit 1b1097dbf6
79 changed files with 3596 additions and 0 deletions

View File

@ -0,0 +1,16 @@
// Copyright 2022 Igalia S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
template: default
desc: Compound addition assignment with target being a private reference
---*/
//- lhs
1
//- operator
+=
//- rhs
2
//- result
3

View File

@ -0,0 +1,16 @@
// Copyright 2022 Igalia S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
template: default
desc: Compound logical-and assignment with target being a private reference
---*/
//- lhs
true
//- operator
&&=
//- rhs
false
//- result
false

View File

@ -0,0 +1,16 @@
// Copyright 2022 Igalia S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
template: default
desc: Compound bitwise-and assignment with target being a private reference
---*/
//- lhs
0b0101
//- operator
&=
//- rhs
0b1010
//- result
0b0000

View File

@ -0,0 +1,16 @@
// Copyright 2022 Igalia S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
template: default
desc: Compound bitwise-or assignment with target being a private reference
---*/
//- lhs
0b0101
//- operator
|=
//- rhs
0b1010
//- result
0b1111

View File

@ -0,0 +1,16 @@
// Copyright 2022 Igalia S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
template: default
desc: Compound bitwise-xor assignment with target being a private reference
---*/
//- lhs
0x1111
//- operator
^=
//- rhs
0x1010
//- result
0x0101

View File

@ -0,0 +1,51 @@
// Copyright 2021 the V8 project authors; 2022 Igalia S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
path: language/expressions/compound-assignment/left-hand-side-private-reference-data-property-
esid: sec-assignment-operators-runtime-semantics-evaluation
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
3. If _entry_.[[Kind]] is ~field~, then
a. Set _entry_.[[Value]] to _value_.
name: to a field
features: [class-fields-private]
---*/
class C {
#field = /*{lhs}*/;
compoundAssignment() {
return this.#field /*{operator}*/ /*{rhs}*/;
}
fieldValue() {
return this.#field;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), /*{result}*/, "The expression should evaluate to the result");
assert.sameValue(o.fieldValue(), /*{result}*/, "PutValue should store the result in the private reference");

View File

@ -0,0 +1,59 @@
// Copyright 2021 the V8 project authors; 2022 Igalia S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
path: language/expressions/compound-assignment/left-hand-side-private-reference-accessor-property-
esid: sec-assignment-operators-runtime-semantics-evaluation
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
...
5.c. Let _setter_ be _entry_.[[Set]].
d. Perform ? Call(_setter_, _O_, « _value_ »).
name: to an accessor property with getter and setter
features: [class-fields-private]
---*/
class C {
#setterCalledWith;
get #field() {
return /*{lhs}*/;
}
set #field(value) {
this.#setterCalledWith = value;
}
compoundAssignment() {
return this.#field /*{operator}*/ /*{rhs}*/;
}
setterCalledWithValue() {
return this.#setterCalledWith;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), /*{result}*/, "The expression should evaluate to the result");
assert.sameValue(o.setterCalledWithValue(), /*{result}*/, "PutValue should call the setter with the result");

View File

@ -0,0 +1,49 @@
// Copyright 2021 the V8 project authors; 2022 Igalia S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
path: language/expressions/compound-assignment/left-hand-side-private-reference-readonly-accessor-property-
esid: sec-assignment-operators-runtime-semantics-evaluation
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
b. If _entry_.[[Set]] is *undefined*, throw a *TypeError* exception.
name: to an accessor property with getter
features: [class-fields-private]
---*/
class C {
get #field() {
return 1;
}
compoundAssignment() {
return this.#field /*{operator}*/ 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result if no setter");

View File

@ -0,0 +1,47 @@
// Copyright 2021 the V8 project authors; 2022 Igalia S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
path: language/expressions/compound-assignment/left-hand-side-private-reference-method-
esid: sec-assignment-operators-runtime-semantics-evaluation
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
4. Else if _entry_.[[Kind]] is ~method~, then
a. Throw a *TypeError* exception.
name: to a private method
features: [class-fields-private]
---*/
class C {
#privateMethod() {}
compoundAssignment() {
return this.#privateMethod /*{operator}*/ 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result in a method private reference");

View File

@ -0,0 +1,16 @@
// Copyright 2022 Igalia S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
template: default
desc: Compound division assignment with target being a private reference
---*/
//- lhs
1
//- operator
/=
//- rhs
2
//- result
0.5

View File

@ -0,0 +1,16 @@
// Copyright 2022 Igalia S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
template: default
desc: Compound exponentiation assignment with target being a private reference
---*/
//- lhs
10
//- operator
**=
//- rhs
3
//- result
1000

View File

@ -0,0 +1,16 @@
// Copyright 2022 Igalia S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
template: default
desc: Compound left-shift assignment with target being a private reference
---*/
//- lhs
0b0110
//- operator
<<=
//- rhs
4
//- result
0b01100000

View File

@ -0,0 +1,16 @@
// Copyright 2022 Igalia S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
template: default
desc: Compound modulo assignment with target being a private reference
---*/
//- lhs
3
//- operator
%=
//- rhs
2
//- result
1

View File

@ -0,0 +1,16 @@
// Copyright 2022 Igalia S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
template: default
desc: Compound multiplication assignment with target being a private reference
---*/
//- lhs
2
//- operator
*=
//- rhs
3
//- result
6

View File

@ -0,0 +1,16 @@
// Copyright 2022 Igalia S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
template: default
desc: Compound nullish-coalescing assignment with target being a private reference
---*/
//- lhs
null
//- operator
??=
//- rhs
1
//- result
1

View File

@ -0,0 +1,16 @@
// Copyright 2022 Igalia S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
template: default
desc: Compound logical-or assignment with target being a private reference
---*/
//- lhs
false
//- operator
||=
//- rhs
true
//- result
true

View File

@ -0,0 +1,16 @@
// Copyright 2022 Igalia S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
template: default
desc: Compound right-shift assignment with target being a private reference
---*/
//- lhs
0b1100
//- operator
>>>=
//- rhs
2
//- result
0b0011

View File

@ -0,0 +1,16 @@
// Copyright 2022 Igalia S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
template: default
desc: Compound signed-right-shift assignment with target being a private reference
---*/
//- lhs
0b1100
//- operator
>>=
//- rhs
2
//- result
0b0011

View File

@ -0,0 +1,16 @@
// Copyright 2022 Igalia S.L. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
template: default
desc: Compound subtraction assignment with target being a private reference
---*/
//- lhs
3
//- operator
-=
//- rhs
2
//- result
1

View File

@ -0,0 +1,60 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/add.case
// - src/compound-assignment-private/default/getter-setter.template
/*---
description: Compound addition assignment with target being a private reference (to an accessor property with getter and setter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
...
5.c. Let _setter_ be _entry_.[[Set]].
d. Perform ? Call(_setter_, _O_, « _value_ »).
---*/
class C {
#setterCalledWith;
get #field() {
return 1;
}
set #field(value) {
this.#setterCalledWith = value;
}
compoundAssignment() {
return this.#field += 2;
}
setterCalledWithValue() {
return this.#setterCalledWith;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 3, "The expression should evaluate to the result");
assert.sameValue(o.setterCalledWithValue(), 3, "PutValue should call the setter with the result");

View File

@ -0,0 +1,60 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/and.case
// - src/compound-assignment-private/default/getter-setter.template
/*---
description: Compound logical-and assignment with target being a private reference (to an accessor property with getter and setter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
...
5.c. Let _setter_ be _entry_.[[Set]].
d. Perform ? Call(_setter_, _O_, « _value_ »).
---*/
class C {
#setterCalledWith;
get #field() {
return true;
}
set #field(value) {
this.#setterCalledWith = value;
}
compoundAssignment() {
return this.#field &&= false;
}
setterCalledWithValue() {
return this.#setterCalledWith;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), false, "The expression should evaluate to the result");
assert.sameValue(o.setterCalledWithValue(), false, "PutValue should call the setter with the result");

View File

@ -0,0 +1,60 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/bitand.case
// - src/compound-assignment-private/default/getter-setter.template
/*---
description: Compound bitwise-and assignment with target being a private reference (to an accessor property with getter and setter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
...
5.c. Let _setter_ be _entry_.[[Set]].
d. Perform ? Call(_setter_, _O_, « _value_ »).
---*/
class C {
#setterCalledWith;
get #field() {
return 0b0101;
}
set #field(value) {
this.#setterCalledWith = value;
}
compoundAssignment() {
return this.#field &= 0b1010;
}
setterCalledWithValue() {
return this.#setterCalledWith;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 0b0000, "The expression should evaluate to the result");
assert.sameValue(o.setterCalledWithValue(), 0b0000, "PutValue should call the setter with the result");

View File

@ -0,0 +1,60 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/bitor.case
// - src/compound-assignment-private/default/getter-setter.template
/*---
description: Compound bitwise-or assignment with target being a private reference (to an accessor property with getter and setter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
...
5.c. Let _setter_ be _entry_.[[Set]].
d. Perform ? Call(_setter_, _O_, « _value_ »).
---*/
class C {
#setterCalledWith;
get #field() {
return 0b0101;
}
set #field(value) {
this.#setterCalledWith = value;
}
compoundAssignment() {
return this.#field |= 0b1010;
}
setterCalledWithValue() {
return this.#setterCalledWith;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 0b1111, "The expression should evaluate to the result");
assert.sameValue(o.setterCalledWithValue(), 0b1111, "PutValue should call the setter with the result");

View File

@ -0,0 +1,60 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/bitxor.case
// - src/compound-assignment-private/default/getter-setter.template
/*---
description: Compound bitwise-xor assignment with target being a private reference (to an accessor property with getter and setter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
...
5.c. Let _setter_ be _entry_.[[Set]].
d. Perform ? Call(_setter_, _O_, « _value_ »).
---*/
class C {
#setterCalledWith;
get #field() {
return 0x1111;
}
set #field(value) {
this.#setterCalledWith = value;
}
compoundAssignment() {
return this.#field ^= 0x1010;
}
setterCalledWithValue() {
return this.#setterCalledWith;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 0x0101, "The expression should evaluate to the result");
assert.sameValue(o.setterCalledWithValue(), 0x0101, "PutValue should call the setter with the result");

View File

@ -0,0 +1,60 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/div.case
// - src/compound-assignment-private/default/getter-setter.template
/*---
description: Compound division assignment with target being a private reference (to an accessor property with getter and setter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
...
5.c. Let _setter_ be _entry_.[[Set]].
d. Perform ? Call(_setter_, _O_, « _value_ »).
---*/
class C {
#setterCalledWith;
get #field() {
return 1;
}
set #field(value) {
this.#setterCalledWith = value;
}
compoundAssignment() {
return this.#field /= 2;
}
setterCalledWithValue() {
return this.#setterCalledWith;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 0.5, "The expression should evaluate to the result");
assert.sameValue(o.setterCalledWithValue(), 0.5, "PutValue should call the setter with the result");

View File

@ -0,0 +1,60 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/exp.case
// - src/compound-assignment-private/default/getter-setter.template
/*---
description: Compound exponentiation assignment with target being a private reference (to an accessor property with getter and setter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
...
5.c. Let _setter_ be _entry_.[[Set]].
d. Perform ? Call(_setter_, _O_, « _value_ »).
---*/
class C {
#setterCalledWith;
get #field() {
return 10;
}
set #field(value) {
this.#setterCalledWith = value;
}
compoundAssignment() {
return this.#field **= 3;
}
setterCalledWithValue() {
return this.#setterCalledWith;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 1000, "The expression should evaluate to the result");
assert.sameValue(o.setterCalledWithValue(), 1000, "PutValue should call the setter with the result");

View File

@ -0,0 +1,60 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/lshift.case
// - src/compound-assignment-private/default/getter-setter.template
/*---
description: Compound left-shift assignment with target being a private reference (to an accessor property with getter and setter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
...
5.c. Let _setter_ be _entry_.[[Set]].
d. Perform ? Call(_setter_, _O_, « _value_ »).
---*/
class C {
#setterCalledWith;
get #field() {
return 0b0110;
}
set #field(value) {
this.#setterCalledWith = value;
}
compoundAssignment() {
return this.#field <<= 4;
}
setterCalledWithValue() {
return this.#setterCalledWith;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 0b01100000, "The expression should evaluate to the result");
assert.sameValue(o.setterCalledWithValue(), 0b01100000, "PutValue should call the setter with the result");

View File

@ -0,0 +1,60 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/mod.case
// - src/compound-assignment-private/default/getter-setter.template
/*---
description: Compound modulo assignment with target being a private reference (to an accessor property with getter and setter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
...
5.c. Let _setter_ be _entry_.[[Set]].
d. Perform ? Call(_setter_, _O_, « _value_ »).
---*/
class C {
#setterCalledWith;
get #field() {
return 3;
}
set #field(value) {
this.#setterCalledWith = value;
}
compoundAssignment() {
return this.#field %= 2;
}
setterCalledWithValue() {
return this.#setterCalledWith;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 1, "The expression should evaluate to the result");
assert.sameValue(o.setterCalledWithValue(), 1, "PutValue should call the setter with the result");

View File

@ -0,0 +1,60 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/mult.case
// - src/compound-assignment-private/default/getter-setter.template
/*---
description: Compound multiplication assignment with target being a private reference (to an accessor property with getter and setter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
...
5.c. Let _setter_ be _entry_.[[Set]].
d. Perform ? Call(_setter_, _O_, « _value_ »).
---*/
class C {
#setterCalledWith;
get #field() {
return 2;
}
set #field(value) {
this.#setterCalledWith = value;
}
compoundAssignment() {
return this.#field *= 3;
}
setterCalledWithValue() {
return this.#setterCalledWith;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 6, "The expression should evaluate to the result");
assert.sameValue(o.setterCalledWithValue(), 6, "PutValue should call the setter with the result");

View File

@ -0,0 +1,60 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/nullish.case
// - src/compound-assignment-private/default/getter-setter.template
/*---
description: Compound nullish-coalescing assignment with target being a private reference (to an accessor property with getter and setter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
...
5.c. Let _setter_ be _entry_.[[Set]].
d. Perform ? Call(_setter_, _O_, « _value_ »).
---*/
class C {
#setterCalledWith;
get #field() {
return null;
}
set #field(value) {
this.#setterCalledWith = value;
}
compoundAssignment() {
return this.#field ??= 1;
}
setterCalledWithValue() {
return this.#setterCalledWith;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 1, "The expression should evaluate to the result");
assert.sameValue(o.setterCalledWithValue(), 1, "PutValue should call the setter with the result");

View File

@ -0,0 +1,60 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/or.case
// - src/compound-assignment-private/default/getter-setter.template
/*---
description: Compound logical-or assignment with target being a private reference (to an accessor property with getter and setter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
...
5.c. Let _setter_ be _entry_.[[Set]].
d. Perform ? Call(_setter_, _O_, « _value_ »).
---*/
class C {
#setterCalledWith;
get #field() {
return false;
}
set #field(value) {
this.#setterCalledWith = value;
}
compoundAssignment() {
return this.#field ||= true;
}
setterCalledWithValue() {
return this.#setterCalledWith;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), true, "The expression should evaluate to the result");
assert.sameValue(o.setterCalledWithValue(), true, "PutValue should call the setter with the result");

View File

@ -0,0 +1,60 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/rshift.case
// - src/compound-assignment-private/default/getter-setter.template
/*---
description: Compound right-shift assignment with target being a private reference (to an accessor property with getter and setter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
...
5.c. Let _setter_ be _entry_.[[Set]].
d. Perform ? Call(_setter_, _O_, « _value_ »).
---*/
class C {
#setterCalledWith;
get #field() {
return 0b1100;
}
set #field(value) {
this.#setterCalledWith = value;
}
compoundAssignment() {
return this.#field >>>= 2;
}
setterCalledWithValue() {
return this.#setterCalledWith;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 0b0011, "The expression should evaluate to the result");
assert.sameValue(o.setterCalledWithValue(), 0b0011, "PutValue should call the setter with the result");

View File

@ -0,0 +1,60 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/srshift.case
// - src/compound-assignment-private/default/getter-setter.template
/*---
description: Compound signed-right-shift assignment with target being a private reference (to an accessor property with getter and setter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
...
5.c. Let _setter_ be _entry_.[[Set]].
d. Perform ? Call(_setter_, _O_, « _value_ »).
---*/
class C {
#setterCalledWith;
get #field() {
return 0b1100;
}
set #field(value) {
this.#setterCalledWith = value;
}
compoundAssignment() {
return this.#field >>= 2;
}
setterCalledWithValue() {
return this.#setterCalledWith;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 0b0011, "The expression should evaluate to the result");
assert.sameValue(o.setterCalledWithValue(), 0b0011, "PutValue should call the setter with the result");

View File

@ -0,0 +1,60 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/sub.case
// - src/compound-assignment-private/default/getter-setter.template
/*---
description: Compound subtraction assignment with target being a private reference (to an accessor property with getter and setter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
...
5.c. Let _setter_ be _entry_.[[Set]].
d. Perform ? Call(_setter_, _O_, « _value_ »).
---*/
class C {
#setterCalledWith;
get #field() {
return 3;
}
set #field(value) {
this.#setterCalledWith = value;
}
compoundAssignment() {
return this.#field -= 2;
}
setterCalledWithValue() {
return this.#setterCalledWith;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 1, "The expression should evaluate to the result");
assert.sameValue(o.setterCalledWithValue(), 1, "PutValue should call the setter with the result");

View File

@ -0,0 +1,52 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/add.case
// - src/compound-assignment-private/default/data-property.template
/*---
description: Compound addition assignment with target being a private reference (to a field)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
3. If _entry_.[[Kind]] is ~field~, then
a. Set _entry_.[[Value]] to _value_.
---*/
class C {
#field = 1;
compoundAssignment() {
return this.#field += 2;
}
fieldValue() {
return this.#field;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 3, "The expression should evaluate to the result");
assert.sameValue(o.fieldValue(), 3, "PutValue should store the result in the private reference");

View File

@ -0,0 +1,52 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/and.case
// - src/compound-assignment-private/default/data-property.template
/*---
description: Compound logical-and assignment with target being a private reference (to a field)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
3. If _entry_.[[Kind]] is ~field~, then
a. Set _entry_.[[Value]] to _value_.
---*/
class C {
#field = true;
compoundAssignment() {
return this.#field &&= false;
}
fieldValue() {
return this.#field;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), false, "The expression should evaluate to the result");
assert.sameValue(o.fieldValue(), false, "PutValue should store the result in the private reference");

View File

@ -0,0 +1,52 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/bitand.case
// - src/compound-assignment-private/default/data-property.template
/*---
description: Compound bitwise-and assignment with target being a private reference (to a field)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
3. If _entry_.[[Kind]] is ~field~, then
a. Set _entry_.[[Value]] to _value_.
---*/
class C {
#field = 0b0101;
compoundAssignment() {
return this.#field &= 0b1010;
}
fieldValue() {
return this.#field;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 0b0000, "The expression should evaluate to the result");
assert.sameValue(o.fieldValue(), 0b0000, "PutValue should store the result in the private reference");

View File

@ -0,0 +1,52 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/bitor.case
// - src/compound-assignment-private/default/data-property.template
/*---
description: Compound bitwise-or assignment with target being a private reference (to a field)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
3. If _entry_.[[Kind]] is ~field~, then
a. Set _entry_.[[Value]] to _value_.
---*/
class C {
#field = 0b0101;
compoundAssignment() {
return this.#field |= 0b1010;
}
fieldValue() {
return this.#field;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 0b1111, "The expression should evaluate to the result");
assert.sameValue(o.fieldValue(), 0b1111, "PutValue should store the result in the private reference");

View File

@ -0,0 +1,52 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/bitxor.case
// - src/compound-assignment-private/default/data-property.template
/*---
description: Compound bitwise-xor assignment with target being a private reference (to a field)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
3. If _entry_.[[Kind]] is ~field~, then
a. Set _entry_.[[Value]] to _value_.
---*/
class C {
#field = 0x1111;
compoundAssignment() {
return this.#field ^= 0x1010;
}
fieldValue() {
return this.#field;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 0x0101, "The expression should evaluate to the result");
assert.sameValue(o.fieldValue(), 0x0101, "PutValue should store the result in the private reference");

View File

@ -0,0 +1,52 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/div.case
// - src/compound-assignment-private/default/data-property.template
/*---
description: Compound division assignment with target being a private reference (to a field)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
3. If _entry_.[[Kind]] is ~field~, then
a. Set _entry_.[[Value]] to _value_.
---*/
class C {
#field = 1;
compoundAssignment() {
return this.#field /= 2;
}
fieldValue() {
return this.#field;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 0.5, "The expression should evaluate to the result");
assert.sameValue(o.fieldValue(), 0.5, "PutValue should store the result in the private reference");

View File

@ -0,0 +1,52 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/exp.case
// - src/compound-assignment-private/default/data-property.template
/*---
description: Compound exponentiation assignment with target being a private reference (to a field)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
3. If _entry_.[[Kind]] is ~field~, then
a. Set _entry_.[[Value]] to _value_.
---*/
class C {
#field = 10;
compoundAssignment() {
return this.#field **= 3;
}
fieldValue() {
return this.#field;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 1000, "The expression should evaluate to the result");
assert.sameValue(o.fieldValue(), 1000, "PutValue should store the result in the private reference");

View File

@ -0,0 +1,52 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/lshift.case
// - src/compound-assignment-private/default/data-property.template
/*---
description: Compound left-shift assignment with target being a private reference (to a field)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
3. If _entry_.[[Kind]] is ~field~, then
a. Set _entry_.[[Value]] to _value_.
---*/
class C {
#field = 0b0110;
compoundAssignment() {
return this.#field <<= 4;
}
fieldValue() {
return this.#field;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 0b01100000, "The expression should evaluate to the result");
assert.sameValue(o.fieldValue(), 0b01100000, "PutValue should store the result in the private reference");

View File

@ -0,0 +1,52 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/mod.case
// - src/compound-assignment-private/default/data-property.template
/*---
description: Compound modulo assignment with target being a private reference (to a field)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
3. If _entry_.[[Kind]] is ~field~, then
a. Set _entry_.[[Value]] to _value_.
---*/
class C {
#field = 3;
compoundAssignment() {
return this.#field %= 2;
}
fieldValue() {
return this.#field;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 1, "The expression should evaluate to the result");
assert.sameValue(o.fieldValue(), 1, "PutValue should store the result in the private reference");

View File

@ -0,0 +1,52 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/mult.case
// - src/compound-assignment-private/default/data-property.template
/*---
description: Compound multiplication assignment with target being a private reference (to a field)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
3. If _entry_.[[Kind]] is ~field~, then
a. Set _entry_.[[Value]] to _value_.
---*/
class C {
#field = 2;
compoundAssignment() {
return this.#field *= 3;
}
fieldValue() {
return this.#field;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 6, "The expression should evaluate to the result");
assert.sameValue(o.fieldValue(), 6, "PutValue should store the result in the private reference");

View File

@ -0,0 +1,52 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/nullish.case
// - src/compound-assignment-private/default/data-property.template
/*---
description: Compound nullish-coalescing assignment with target being a private reference (to a field)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
3. If _entry_.[[Kind]] is ~field~, then
a. Set _entry_.[[Value]] to _value_.
---*/
class C {
#field = null;
compoundAssignment() {
return this.#field ??= 1;
}
fieldValue() {
return this.#field;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 1, "The expression should evaluate to the result");
assert.sameValue(o.fieldValue(), 1, "PutValue should store the result in the private reference");

View File

@ -0,0 +1,52 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/or.case
// - src/compound-assignment-private/default/data-property.template
/*---
description: Compound logical-or assignment with target being a private reference (to a field)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
3. If _entry_.[[Kind]] is ~field~, then
a. Set _entry_.[[Value]] to _value_.
---*/
class C {
#field = false;
compoundAssignment() {
return this.#field ||= true;
}
fieldValue() {
return this.#field;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), true, "The expression should evaluate to the result");
assert.sameValue(o.fieldValue(), true, "PutValue should store the result in the private reference");

View File

@ -0,0 +1,52 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/rshift.case
// - src/compound-assignment-private/default/data-property.template
/*---
description: Compound right-shift assignment with target being a private reference (to a field)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
3. If _entry_.[[Kind]] is ~field~, then
a. Set _entry_.[[Value]] to _value_.
---*/
class C {
#field = 0b1100;
compoundAssignment() {
return this.#field >>>= 2;
}
fieldValue() {
return this.#field;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 0b0011, "The expression should evaluate to the result");
assert.sameValue(o.fieldValue(), 0b0011, "PutValue should store the result in the private reference");

View File

@ -0,0 +1,52 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/srshift.case
// - src/compound-assignment-private/default/data-property.template
/*---
description: Compound signed-right-shift assignment with target being a private reference (to a field)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
3. If _entry_.[[Kind]] is ~field~, then
a. Set _entry_.[[Value]] to _value_.
---*/
class C {
#field = 0b1100;
compoundAssignment() {
return this.#field >>= 2;
}
fieldValue() {
return this.#field;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 0b0011, "The expression should evaluate to the result");
assert.sameValue(o.fieldValue(), 0b0011, "PutValue should store the result in the private reference");

View File

@ -0,0 +1,52 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/sub.case
// - src/compound-assignment-private/default/data-property.template
/*---
description: Compound subtraction assignment with target being a private reference (to a field)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
3. If _entry_.[[Kind]] is ~field~, then
a. Set _entry_.[[Value]] to _value_.
---*/
class C {
#field = 3;
compoundAssignment() {
return this.#field -= 2;
}
fieldValue() {
return this.#field;
}
}
const o = new C();
assert.sameValue(o.compoundAssignment(), 1, "The expression should evaluate to the result");
assert.sameValue(o.fieldValue(), 1, "PutValue should store the result in the private reference");

View File

@ -0,0 +1,48 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/add.case
// - src/compound-assignment-private/default/method.template
/*---
description: Compound addition assignment with target being a private reference (to a private method)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
4. Else if _entry_.[[Kind]] is ~method~, then
a. Throw a *TypeError* exception.
---*/
class C {
#privateMethod() {}
compoundAssignment() {
return this.#privateMethod += 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result in a method private reference");

View File

@ -0,0 +1,48 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/and.case
// - src/compound-assignment-private/default/method.template
/*---
description: Compound logical-and assignment with target being a private reference (to a private method)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
4. Else if _entry_.[[Kind]] is ~method~, then
a. Throw a *TypeError* exception.
---*/
class C {
#privateMethod() {}
compoundAssignment() {
return this.#privateMethod &&= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result in a method private reference");

View File

@ -0,0 +1,48 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/bitand.case
// - src/compound-assignment-private/default/method.template
/*---
description: Compound bitwise-and assignment with target being a private reference (to a private method)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
4. Else if _entry_.[[Kind]] is ~method~, then
a. Throw a *TypeError* exception.
---*/
class C {
#privateMethod() {}
compoundAssignment() {
return this.#privateMethod &= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result in a method private reference");

View File

@ -0,0 +1,48 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/bitor.case
// - src/compound-assignment-private/default/method.template
/*---
description: Compound bitwise-or assignment with target being a private reference (to a private method)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
4. Else if _entry_.[[Kind]] is ~method~, then
a. Throw a *TypeError* exception.
---*/
class C {
#privateMethod() {}
compoundAssignment() {
return this.#privateMethod |= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result in a method private reference");

View File

@ -0,0 +1,48 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/bitxor.case
// - src/compound-assignment-private/default/method.template
/*---
description: Compound bitwise-xor assignment with target being a private reference (to a private method)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
4. Else if _entry_.[[Kind]] is ~method~, then
a. Throw a *TypeError* exception.
---*/
class C {
#privateMethod() {}
compoundAssignment() {
return this.#privateMethod ^= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result in a method private reference");

View File

@ -0,0 +1,48 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/div.case
// - src/compound-assignment-private/default/method.template
/*---
description: Compound division assignment with target being a private reference (to a private method)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
4. Else if _entry_.[[Kind]] is ~method~, then
a. Throw a *TypeError* exception.
---*/
class C {
#privateMethod() {}
compoundAssignment() {
return this.#privateMethod /= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result in a method private reference");

View File

@ -0,0 +1,48 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/exp.case
// - src/compound-assignment-private/default/method.template
/*---
description: Compound exponentiation assignment with target being a private reference (to a private method)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
4. Else if _entry_.[[Kind]] is ~method~, then
a. Throw a *TypeError* exception.
---*/
class C {
#privateMethod() {}
compoundAssignment() {
return this.#privateMethod **= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result in a method private reference");

View File

@ -0,0 +1,48 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/lshift.case
// - src/compound-assignment-private/default/method.template
/*---
description: Compound left-shift assignment with target being a private reference (to a private method)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
4. Else if _entry_.[[Kind]] is ~method~, then
a. Throw a *TypeError* exception.
---*/
class C {
#privateMethod() {}
compoundAssignment() {
return this.#privateMethod <<= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result in a method private reference");

View File

@ -0,0 +1,48 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/mod.case
// - src/compound-assignment-private/default/method.template
/*---
description: Compound modulo assignment with target being a private reference (to a private method)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
4. Else if _entry_.[[Kind]] is ~method~, then
a. Throw a *TypeError* exception.
---*/
class C {
#privateMethod() {}
compoundAssignment() {
return this.#privateMethod %= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result in a method private reference");

View File

@ -0,0 +1,48 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/mult.case
// - src/compound-assignment-private/default/method.template
/*---
description: Compound multiplication assignment with target being a private reference (to a private method)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
4. Else if _entry_.[[Kind]] is ~method~, then
a. Throw a *TypeError* exception.
---*/
class C {
#privateMethod() {}
compoundAssignment() {
return this.#privateMethod *= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result in a method private reference");

View File

@ -0,0 +1,48 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/nullish.case
// - src/compound-assignment-private/default/method.template
/*---
description: Compound nullish-coalescing assignment with target being a private reference (to a private method)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
4. Else if _entry_.[[Kind]] is ~method~, then
a. Throw a *TypeError* exception.
---*/
class C {
#privateMethod() {}
compoundAssignment() {
return this.#privateMethod ??= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result in a method private reference");

View File

@ -0,0 +1,48 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/or.case
// - src/compound-assignment-private/default/method.template
/*---
description: Compound logical-or assignment with target being a private reference (to a private method)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
4. Else if _entry_.[[Kind]] is ~method~, then
a. Throw a *TypeError* exception.
---*/
class C {
#privateMethod() {}
compoundAssignment() {
return this.#privateMethod ||= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result in a method private reference");

View File

@ -0,0 +1,48 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/rshift.case
// - src/compound-assignment-private/default/method.template
/*---
description: Compound right-shift assignment with target being a private reference (to a private method)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
4. Else if _entry_.[[Kind]] is ~method~, then
a. Throw a *TypeError* exception.
---*/
class C {
#privateMethod() {}
compoundAssignment() {
return this.#privateMethod >>>= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result in a method private reference");

View File

@ -0,0 +1,48 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/srshift.case
// - src/compound-assignment-private/default/method.template
/*---
description: Compound signed-right-shift assignment with target being a private reference (to a private method)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
4. Else if _entry_.[[Kind]] is ~method~, then
a. Throw a *TypeError* exception.
---*/
class C {
#privateMethod() {}
compoundAssignment() {
return this.#privateMethod >>= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result in a method private reference");

View File

@ -0,0 +1,48 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/sub.case
// - src/compound-assignment-private/default/method.template
/*---
description: Compound subtraction assignment with target being a private reference (to a private method)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
4. Else if _entry_.[[Kind]] is ~method~, then
a. Throw a *TypeError* exception.
---*/
class C {
#privateMethod() {}
compoundAssignment() {
return this.#privateMethod -= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result in a method private reference");

View File

@ -0,0 +1,50 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/add.case
// - src/compound-assignment-private/default/getter.template
/*---
description: Compound addition assignment with target being a private reference (to an accessor property with getter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
b. If _entry_.[[Set]] is *undefined*, throw a *TypeError* exception.
---*/
class C {
get #field() {
return 1;
}
compoundAssignment() {
return this.#field += 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result if no setter");

View File

@ -0,0 +1,50 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/and.case
// - src/compound-assignment-private/default/getter.template
/*---
description: Compound logical-and assignment with target being a private reference (to an accessor property with getter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
b. If _entry_.[[Set]] is *undefined*, throw a *TypeError* exception.
---*/
class C {
get #field() {
return 1;
}
compoundAssignment() {
return this.#field &&= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result if no setter");

View File

@ -0,0 +1,50 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/bitand.case
// - src/compound-assignment-private/default/getter.template
/*---
description: Compound bitwise-and assignment with target being a private reference (to an accessor property with getter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
b. If _entry_.[[Set]] is *undefined*, throw a *TypeError* exception.
---*/
class C {
get #field() {
return 1;
}
compoundAssignment() {
return this.#field &= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result if no setter");

View File

@ -0,0 +1,50 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/bitor.case
// - src/compound-assignment-private/default/getter.template
/*---
description: Compound bitwise-or assignment with target being a private reference (to an accessor property with getter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
b. If _entry_.[[Set]] is *undefined*, throw a *TypeError* exception.
---*/
class C {
get #field() {
return 1;
}
compoundAssignment() {
return this.#field |= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result if no setter");

View File

@ -0,0 +1,50 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/bitxor.case
// - src/compound-assignment-private/default/getter.template
/*---
description: Compound bitwise-xor assignment with target being a private reference (to an accessor property with getter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
b. If _entry_.[[Set]] is *undefined*, throw a *TypeError* exception.
---*/
class C {
get #field() {
return 1;
}
compoundAssignment() {
return this.#field ^= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result if no setter");

View File

@ -0,0 +1,50 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/div.case
// - src/compound-assignment-private/default/getter.template
/*---
description: Compound division assignment with target being a private reference (to an accessor property with getter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
b. If _entry_.[[Set]] is *undefined*, throw a *TypeError* exception.
---*/
class C {
get #field() {
return 1;
}
compoundAssignment() {
return this.#field /= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result if no setter");

View File

@ -0,0 +1,50 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/exp.case
// - src/compound-assignment-private/default/getter.template
/*---
description: Compound exponentiation assignment with target being a private reference (to an accessor property with getter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
b. If _entry_.[[Set]] is *undefined*, throw a *TypeError* exception.
---*/
class C {
get #field() {
return 1;
}
compoundAssignment() {
return this.#field **= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result if no setter");

View File

@ -0,0 +1,50 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/lshift.case
// - src/compound-assignment-private/default/getter.template
/*---
description: Compound left-shift assignment with target being a private reference (to an accessor property with getter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
b. If _entry_.[[Set]] is *undefined*, throw a *TypeError* exception.
---*/
class C {
get #field() {
return 1;
}
compoundAssignment() {
return this.#field <<= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result if no setter");

View File

@ -0,0 +1,50 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/mod.case
// - src/compound-assignment-private/default/getter.template
/*---
description: Compound modulo assignment with target being a private reference (to an accessor property with getter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
b. If _entry_.[[Set]] is *undefined*, throw a *TypeError* exception.
---*/
class C {
get #field() {
return 1;
}
compoundAssignment() {
return this.#field %= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result if no setter");

View File

@ -0,0 +1,50 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/mult.case
// - src/compound-assignment-private/default/getter.template
/*---
description: Compound multiplication assignment with target being a private reference (to an accessor property with getter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
b. If _entry_.[[Set]] is *undefined*, throw a *TypeError* exception.
---*/
class C {
get #field() {
return 1;
}
compoundAssignment() {
return this.#field *= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result if no setter");

View File

@ -0,0 +1,50 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/nullish.case
// - src/compound-assignment-private/default/getter.template
/*---
description: Compound nullish-coalescing assignment with target being a private reference (to an accessor property with getter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
b. If _entry_.[[Set]] is *undefined*, throw a *TypeError* exception.
---*/
class C {
get #field() {
return 1;
}
compoundAssignment() {
return this.#field ??= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result if no setter");

View File

@ -0,0 +1,50 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/or.case
// - src/compound-assignment-private/default/getter.template
/*---
description: Compound logical-or assignment with target being a private reference (to an accessor property with getter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
b. If _entry_.[[Set]] is *undefined*, throw a *TypeError* exception.
---*/
class C {
get #field() {
return 1;
}
compoundAssignment() {
return this.#field ||= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result if no setter");

View File

@ -0,0 +1,50 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/rshift.case
// - src/compound-assignment-private/default/getter.template
/*---
description: Compound right-shift assignment with target being a private reference (to an accessor property with getter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
b. If _entry_.[[Set]] is *undefined*, throw a *TypeError* exception.
---*/
class C {
get #field() {
return 1;
}
compoundAssignment() {
return this.#field >>>= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result if no setter");

View File

@ -0,0 +1,50 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/srshift.case
// - src/compound-assignment-private/default/getter.template
/*---
description: Compound signed-right-shift assignment with target being a private reference (to an accessor property with getter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
b. If _entry_.[[Set]] is *undefined*, throw a *TypeError* exception.
---*/
class C {
get #field() {
return 1;
}
compoundAssignment() {
return this.#field >>= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result if no setter");

View File

@ -0,0 +1,50 @@
// This file was procedurally generated from the following sources:
// - src/compound-assignment-private/sub.case
// - src/compound-assignment-private/default/getter.template
/*---
description: Compound subtraction assignment with target being a private reference (to an accessor property with getter)
esid: sec-assignment-operators-runtime-semantics-evaluation
features: [class-fields-private]
flags: [generated]
info: |
sec-assignment-operators-runtime-semantics-evaluation
AssignmentExpression : LeftHandSideExpression AssignmentOperator AssignmentExpression
1. Let _lref_ be the result of evaluating |LeftHandSideExpression|.
2. Let _lval_ be ? GetValue(_lref_).
...
7. Let _r_ be ApplyStringOrNumericBinaryOperator(_lval_, _opText_, _rval_).
8. Perform ? PutValue(_lref_, _r_).
9. Return _r_.
sec-property-accessors-runtime-semantics-evaluation
MemberExpression : MemberExpression `.` PrivateIdentifier
1. Let _baseReference_ be the result of evaluating |MemberExpression|.
2. Let _baseValue_ be ? GetValue(_baseReference_).
3. Let _fieldNameString_ be the StringValue of |PrivateIdentifier|.
4. Return ! MakePrivateReference(_baseValue_, _fieldNameString_).
PutValue (V, W)
...
5.b. If IsPrivateReference(_V_) is *true*, then
i. Return ? PrivateSet(_baseObj_, _V_.[[ReferencedName]], _W_).
PrivateSet (O, P, value)
...
5.a. Assert: _entry_.[[Kind]] is ~accessor~.
b. If _entry_.[[Set]] is *undefined*, throw a *TypeError* exception.
---*/
class C {
get #field() {
return 1;
}
compoundAssignment() {
return this.#field -= 1;
}
}
const o = new C();
assert.throws(TypeError, () => o.compoundAssignment(), "PutValue throws when storing the result if no setter");