blob: af0778eec9c44bcc542b76fb514aceebbef151c4 [file] [log] [blame]
keith_miller@apple.combcc77f22016-07-15 06:03:25 +00001// This file was procedurally generated from the following sources:
2// - src/dstr-binding/ary-ptrn-rest-id.case
3// - src/dstr-binding/default/for-of-let.template
4/*---
5description: Lone rest element (for-of statement)
6esid: sec-for-in-and-for-of-statements-runtime-semantics-labelledevaluation
7es6id: 13.7.5.11
8features: [destructuring-binding]
9flags: [generated]
10info: |
11 IterationStatement :
12 for ( ForDeclaration of AssignmentExpression ) Statement
13
14 [...]
15 3. Return ForIn/OfBodyEvaluation(ForDeclaration, Statement, keyResult,
16 lexicalBinding, labelSet).
17
18 13.7.5.13 Runtime Semantics: ForIn/OfBodyEvaluation
19
20 [...]
21 3. Let destructuring be IsDestructuring of lhs.
22 [...]
23 5. Repeat
24 [...]
25 h. If destructuring is false, then
26 [...]
27 i. Else
28 i. If lhsKind is assignment, then
29 [...]
30 ii. Else if lhsKind is varBinding, then
31 [...]
32 iii. Else,
33 1. Assert: lhsKind is lexicalBinding.
34 2. Assert: lhs is a ForDeclaration.
35 3. Let status be the result of performing BindingInitialization
36 for lhs passing nextValue and iterationEnv as arguments.
37 [...]
38
39 13.3.3.6 Runtime Semantics: IteratorBindingInitialization
40 BindingRestElement : ... BindingIdentifier
41 [...] 3. Let A be ArrayCreate(0). [...] 5. Repeat
42 [...]
43 f. Let status be CreateDataProperty(A, ToString (n), nextValue).
44 [...]
45---*/
46var values = [1, 2, 3];
47
48var iterCount = 0;
49
50for (let [...x] of [values]) {
51 assert(Array.isArray(x));
52 assert.sameValue(x.length, 3);
53 assert.sameValue(x[0], 1);
54 assert.sameValue(x[1], 2);
55 assert.sameValue(x[2], 3);
56 assert.notSameValue(x, values);
57
58 iterCount += 1;
59}
60
61assert.sameValue(iterCount, 1, 'Iteration occurred as expected');