2020-03-31 07:42:19 +02:00
|
|
|
// 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 not thrown if the AssignmentExpression of a Logical
|
|
|
|
Assignment operator(||=) evaluates to an unresolvable reference and the
|
|
|
|
AssignmentExpression is not evaluated.
|
2020-03-31 07:52:25 +02:00
|
|
|
features: [logical-assignment-operators]
|
2020-03-31 07:42:19 +02:00
|
|
|
|
|
|
|
---*/
|
|
|
|
|
|
|
|
var value = 2;
|
|
|
|
|
|
|
|
assert.sameValue(value ||= unresolved, 2, "value");
|