summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/annexB/language/expressions/logical-assignment/emulates-undefined-coalesce.js
blob: 621b6ee8da7cd4d2548a112a70cb29449ce41bd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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: >
  ??= doesn't special-case [[IsHTMLDDA]] object; rval is not evaluated.
info: |
  AssignmentExpression : LeftHandSideExpression ??= AssignmentExpression

  1. Let lref be the result of evaluating LeftHandSideExpression.
  2. Let lval be ? GetValue(lref).
  3. If lval is neither undefined nor null, return lval.
features: [IsHTMLDDA, logical-assignment-operators]
---*/

var IsHTMLDDA = $262.IsHTMLDDA;
var value = IsHTMLDDA;
assert.sameValue(value ??= unresolved, IsHTMLDDA);
assert.sameValue(value, IsHTMLDDA);

reportCompare(0, 0);