keith_miller@apple.com | bcc77f2 | 2016-07-15 06:03:25 +0000 | [diff] [blame] | 1 | // This file was procedurally generated from the following sources: |
| 2 | // - src/dstr-binding/obj-ptrn-prop-obj.case |
| 3 | // - src/dstr-binding/default/cls-decl-gen-meth.template |
| 4 | /*--- |
| 5 | description: Object binding pattern with "nested" object binding pattern not using initializer (class expression method) |
| 6 | esid: sec-class-definitions-runtime-semantics-evaluation |
| 7 | es6id: 14.5.16 |
| 8 | features: [destructuring-binding] |
| 9 | flags: [generated] |
| 10 | info: | |
| 11 | ClassDeclaration : class BindingIdentifier ClassTail |
| 12 | |
| 13 | 1. Let className be StringValue of BindingIdentifier. |
| 14 | 2. Let value be the result of ClassDefinitionEvaluation of ClassTail with |
| 15 | argument className. |
| 16 | [...] |
| 17 | |
| 18 | 14.5.14 Runtime Semantics: ClassDefinitionEvaluation |
| 19 | |
| 20 | 21. For each ClassElement m in order from methods |
| 21 | a. If IsStatic of m is false, then |
| 22 | i. Let status be the result of performing |
| 23 | PropertyDefinitionEvaluation for m with arguments proto and |
| 24 | false. |
| 25 | [...] |
| 26 | |
| 27 | 14.4.13 Runtime Semantics: PropertyDefinitionEvaluation |
| 28 | |
| 29 | GeneratorMethod : * PropertyName ( StrictFormalParameters ) { GeneratorBody } |
| 30 | |
| 31 | 1. Let propKey be the result of evaluating PropertyName. |
| 32 | 2. ReturnIfAbrupt(propKey). |
| 33 | 3. If the function code for this GeneratorMethod is strict mode code, |
| 34 | let strict be true. Otherwise let strict be false. |
| 35 | 4. Let scope be the running execution context's LexicalEnvironment. |
| 36 | 5. Let closure be GeneratorFunctionCreate(Method, |
| 37 | StrictFormalParameters, GeneratorBody, scope, strict). |
| 38 | |
| 39 | 9.2.1 [[Call]] ( thisArgument, argumentsList) |
| 40 | |
| 41 | [...] |
| 42 | 7. Let result be OrdinaryCallEvaluateBody(F, argumentsList). |
| 43 | [...] |
| 44 | |
| 45 | 9.2.1.3 OrdinaryCallEvaluateBody ( F, argumentsList ) |
| 46 | |
| 47 | 1. Let status be FunctionDeclarationInstantiation(F, argumentsList). |
| 48 | [...] |
| 49 | |
| 50 | 9.2.12 FunctionDeclarationInstantiation(func, argumentsList) |
| 51 | |
| 52 | [...] |
| 53 | 23. Let iteratorRecord be Record {[[iterator]]: |
| 54 | CreateListIterator(argumentsList), [[done]]: false}. |
| 55 | 24. If hasDuplicates is true, then |
| 56 | [...] |
| 57 | 25. Else, |
| 58 | b. Let formalStatus be IteratorBindingInitialization for formals with |
| 59 | iteratorRecord and env as arguments. |
| 60 | [...] |
| 61 | |
| 62 | 13.3.3.7 Runtime Semantics: KeyedBindingInitialization |
| 63 | |
| 64 | [...] |
| 65 | 3. If Initializer is present and v is undefined, then |
| 66 | [...] |
| 67 | 4. Return the result of performing BindingInitialization for BindingPattern |
| 68 | passing v and environment as arguments. |
| 69 | ---*/ |
| 70 | |
| 71 | var callCount = 0; |
| 72 | class C { |
| 73 | *method({ w: { x, y, z } = { x: 4, y: 5, z: 6 } }) { |
| 74 | assert.sameValue(x, undefined); |
| 75 | assert.sameValue(y, undefined); |
| 76 | assert.sameValue(z, 7); |
| 77 | |
| 78 | assert.throws(ReferenceError, function() { |
| 79 | w; |
| 80 | }); |
| 81 | callCount = callCount + 1; |
| 82 | } |
| 83 | }; |
| 84 | |
| 85 | new C().method({ w: { x: undefined, z: 7 } }).next(); |
| 86 | assert.sameValue(callCount, 1, 'method invoked exactly once'); |