blob: a3e1c8106e77cb0094f5d133a65bd1c786296a6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Copyright (C) 2017 Caio Lima. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
desc: >
RestBindingInitialization creates a new object even if lhs is a Number
template: default
esid: pending
features: [object-rest]
---*/
//- setup
var rest;
//- elems
{...rest}
//- vals
51
//- body
assert.notSameValue(rest, undefined);
assert.notSameValue(rest, null);
assert(rest instanceof Object);
|