blob: a79beda74d0618368f5b919d4d4277e8e5acd723 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// Copyright (C) 2020 Alexey Shvayka. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-assignment-operators-runtime-semantics-evaluation
description: >
ToBoolean returns `false` for [[IsHTMLDDA]] object; rval is evaluated.
info: |
AssignmentExpression : LeftHandSideExpression ||= AssignmentExpression
1. Let lref be the result of evaluating LeftHandSideExpression.
2. Let lval be ? GetValue(lref).
3. Let lbool be ! ToBoolean(lval).
[...]
7. Perform ? PutValue(lref, rval).
8. Return rval.
The [[IsHTMLDDA]] Internal Slot / Changes to ToBoolean
1. If argument has an [[IsHTMLDDA]] internal slot, return false.
2. Return true.
features: [IsHTMLDDA, logical-assignment-operators]
---*/
var value = $262.IsHTMLDDA;
assert.sameValue(value ||= 2, 2);
assert.sameValue(value, 2);
reportCompare(0, 0);
|