blob: a7e2cb735decb8f4cf8d58097f20e10aae7f2c44 [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-ary-elision.case
3// - src/dstr-binding/default/cls-expr-gen-meth-static-dflt.template
4/*---
5description: Rest element containing an elision (static class expression generator method (default parameter))
6esid: sec-class-definitions-runtime-semantics-evaluation
7es6id: 14.5.16
8features: [generators, destructuring-binding, default-parameters]
9flags: [generated]
10info: |
11 ClassExpression : class BindingIdentifieropt ClassTail
12
13 1. If BindingIdentifieropt is not present, let className be undefined.
14 2. Else, let className be StringValue of BindingIdentifier.
15 3. Let value be the result of ClassDefinitionEvaluation of ClassTail
16 with argument className.
17 [...]
18
19 14.5.14 Runtime Semantics: ClassDefinitionEvaluation
20
21 21. For each ClassElement m in order from methods
22 a. If IsStatic of m is false, then
23 b. Else,
24 Let status be the result of performing PropertyDefinitionEvaluation
25 for m with arguments F and false.
26 [...]
27
28 14.4.13 Runtime Semantics: PropertyDefinitionEvaluation
29
30 GeneratorMethod :
31 * PropertyName ( StrictFormalParameters ) { GeneratorBody }
32
33 1. Let propKey be the result of evaluating PropertyName.
34 2. ReturnIfAbrupt(propKey).
35 3. If the function code for this GeneratorMethod is strict mode code,
36 let strict be true. Otherwise let strict be false.
37 4. Let scope be the running execution context's LexicalEnvironment.
38 5. Let closure be GeneratorFunctionCreate(Method,
39 StrictFormalParameters, GeneratorBody, scope, strict).
40
41 9.2.1 [[Call]] ( thisArgument, argumentsList)
42
43 [...]
44 7. Let result be OrdinaryCallEvaluateBody(F, argumentsList).
45 [...]
46
47 9.2.1.3 OrdinaryCallEvaluateBody ( F, argumentsList )
48
49 1. Let status be FunctionDeclarationInstantiation(F, argumentsList).
50 [...]
51
52 9.2.12 FunctionDeclarationInstantiation(func, argumentsList)
53
54 [...]
55 23. Let iteratorRecord be Record {[[iterator]]:
56 CreateListIterator(argumentsList), [[done]]: false}.
57 24. If hasDuplicates is true, then
58 [...]
59 25. Else,
60 b. Let formalStatus be IteratorBindingInitialization for formals with
61 iteratorRecord and env as arguments.
62 [...]
63
64 13.3.3.6 Runtime Semantics: IteratorBindingInitialization
65
66 BindingRestElement : ... BindingPattern
67
68 1. Let A be ArrayCreate(0).
69 [...]
70 3. Repeat
71 [...]
72 b. If iteratorRecord.[[done]] is true, then
73 i. Return the result of performing BindingInitialization of
74 BindingPattern with A and environment as the arguments.
75 [...]
76
77 13.3.3.6 Runtime Semantics: IteratorBindingInitialization
78
79 ArrayBindingPattern : [ Elision ]
80
81 1. Return the result of performing
82 IteratorDestructuringAssignmentEvaluation of Elision with iteratorRecord
83 as the argument.
84
85 12.14.5.3 Runtime Semantics: IteratorDestructuringAssignmentEvaluation
86
87 Elision : ,
88
89 1. If iteratorRecord.[[done]] is false, then
90 a. Let next be IteratorStep(iteratorRecord.[[iterator]]).
91 b. If next is an abrupt completion, set iteratorRecord.[[done]] to true.
92 c. ReturnIfAbrupt(next).
93 d. If next is false, set iteratorRecord.[[done]] to true.
94 2. Return NormalCompletion(empty).
95
96---*/
97var first = 0;
98var second = 0;
99function* g() {
100 first += 1;
101 yield;
102 second += 1;
103};
104
105var callCount = 0;
106var C = class {
107 static *method([...[,]] = g()) {
108 assert.sameValue(first, 1);
109 assert.sameValue(second, 1);
110 callCount = callCount + 1;
111 }
112};
113
114C.method().next();
115assert.sameValue(callCount, 1, 'method invoked exactly once');