Skip to content
Snippets Groups Projects
Unverified Commit 30c280a1 authored by Leonardo Balter's avatar Leonardo Balter
Browse files

Add case for obj rest name equal to a property

Fixes #913
parent 585f4838
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,6 @@ desc: > ...@@ -6,7 +6,6 @@ desc: >
Rest object contains just source object's own properties Rest object contains just source object's own properties
template: default template: default
esid: pending esid: pending
includes: [propertyHelper.js]
---*/ ---*/
//- setup //- setup
......
// 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');
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment