summaryrefslogtreecommitdiff
path: root/src/dstr-assignment-for-await/obj-rest-obj-own-property.case
blob: e804894b202b5673c0995d2fbaedaa64a8e8e6ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright (C) 2017 Caio Lima & the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
desc: >
    Rest object contains just source object's own properties
template: default
esid: pending
features: [object-rest]
---*/

//- setup
let o = Object.create({ x: 1, y: 2 });
o.z = 3;

let x, y, z;
//- elems
{ x, ...{y , z} }
//- vals
o
//- body
assert.sameValue(x, 1);
assert.sameValue(y, undefined);
assert.sameValue(z, 3);

//- teardown
promise
  .then(() => assert.sameValue(iterCount, 1, 'iteration occurred as expected'), $DONE)
  .then($DONE, $DONE);