blob: 6473ffe917dba18f76d2d931a3e0f79b51319ce6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
'use strict';
// Copyright (c) 2020 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-assignment-operators-runtime-semantics-evaluation
description: >
ReferenceError is thrown if the LeftHandSideExpression of a Logical
Assignment operator(??=) evaluates to an unresolvable reference
flags: [onlyStrict]
features: [logical-assignment-operators]
---*/
assert.throws(ReferenceError, function() {
unresolved ??= 1;
});
reportCompare(0, 0);
|