aboutsummaryrefslogtreecommitdiffstats
path: root/src/dstr-assignment/array-elem-init-evaluation.case
blob: 5feea93a8e01fb0517d983c63dcc29df363ebb13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (C) 2015 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
desc: >
    The Initializer should only be evaluated if v is undefined.
template: default
es6id: 12.14.5.3
---*/

//- setup
var flag1 = false, flag2 = false;
var _;
//- elems
[ _ = flag1 = true, _ = flag2 = true ]
//- vals
[14]
//- body
assert.sameValue(flag1, false);
assert.sameValue(flag2, true);