test262/test/language/expressions/logical-assignment/lgcl-or-assignment-operator...

22 lines
651 B
JavaScript
Raw Normal View History

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: >
Strict Mode - TypeError is thrown if The LeftHandSide of a Logical
Assignment operator(||=) is a reference to a non-existent property
of an object whose [[Extensible]] internal property is false.
flags: [onlyStrict]
features: [logical-assignment-operators]
2020-03-31 07:42:19 +02:00
---*/
var obj = {};
Object.preventExtensions(obj);
2020-03-31 08:38:10 +02:00
assert.throws(TypeError, function() {
2020-03-31 07:42:19 +02:00
obj.prop ||= 1;
});
assert.sameValue(obj.prop, undefined, "obj.prop");