mirror of https://github.com/tc39/test262.git
19 lines
570 B
JavaScript
19 lines
570 B
JavaScript
|
// 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 not 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]
|
||
|
|
||
|
---*/
|
||
|
|
||
|
var obj = {};
|
||
|
Object.preventExtensions(obj);
|
||
|
|
||
|
obj.prop &&= 1;
|
||
|
assert.sameValue(obj.prop, undefined, "obj.prop");
|