Add case for obj rest name equal to a property

Fixes #913
This commit is contained in:
Leonardo Balter 2017-03-15 15:02:41 -04:00
parent 585f48389f
commit 30c280a1f9
No known key found for this signature in database
GPG Key ID: 4191D7EB5EC82FF7
2 changed files with 32 additions and 1 deletions

View File

@ -6,7 +6,6 @@ desc: >
Rest object contains just source object's own properties
template: default
esid: pending
includes: [propertyHelper.js]
---*/
//- setup

View File

@ -0,0 +1,32 @@
// Copyright (C) 2017 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
desc: >
Proper setting in the values for rest name equal to a property name.
template: default
esid: pending
---*/
//- setup
var o = {
x: 42,
y: 39,
z: 'cheeseburger'
};
var x, y, z;
//- elems
{ x, ...z }
//- vals
o
//- body
assert.sameValue(x, 42);
assert.sameValue(y, undefined);
assert.sameValue(z.y, 39);
assert.sameValue(z.z, 'cheeseburger');
var keys = Object.keys(z);
assert.sameValue(keys.length, 2);
assert.sameValue(keys[0], 'y');
assert.sameValue(keys[1], 'z');