mirror of https://github.com/tc39/test262.git
36 lines
922 B
JavaScript
36 lines
922 B
JavaScript
// Copyright (C) 2015 the V8 project authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
description: >
|
|
If the Initializer is present and v is undefined, the Initializer should be
|
|
evaluated and the result assigned to the target reference.
|
|
es6id: 12.14.5.4
|
|
---*/
|
|
|
|
var result, value, x;
|
|
|
|
value = {};
|
|
result = { y: x = 1 } = value;
|
|
|
|
assert.sameValue(result, value);
|
|
assert.sameValue(x, 1, 'no property defined');
|
|
|
|
value = { y: 2 };
|
|
result = { y: x = 1 } = value;
|
|
|
|
assert.sameValue(result, value);
|
|
assert.sameValue(x, 2, 'own property defined (truthy value)');
|
|
|
|
value = { y: null };
|
|
result = { y: x = 1 } = value;
|
|
|
|
assert.sameValue(result, value);
|
|
assert.sameValue(x, null, 'own property defined (`null`)');
|
|
|
|
value = { y: undefined };
|
|
result = { y: x = 1 } = value;
|
|
|
|
assert.sameValue(result, value);
|
|
assert.sameValue(x, 1, 'own property defined (`undefined`)');
|