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-eval-err.case |
| 3 | // - src/dstr-binding/error/cls-decl-meth.template |
| 4 | /*--- |
| 5 | description: Evaluation of property name returns an abrupt completion (class expression method) |
| 6 | esid: sec-runtime-semantics-bindingclassdeclarationevaluation |
| 7 | es6id: 14.5.15 |
| 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.3.8 Runtime Semantics: DefineMethod |
| 28 | |
| 29 | MethodDefinition : PropertyName ( StrictFormalParameters ) { FunctionBody } |
| 30 | |
| 31 | [...] |
| 32 | 6. Let closure be FunctionCreate(kind, StrictFormalParameters, FunctionBody, |
| 33 | scope, strict). If functionPrototype was passed as a parameter then pass its |
| 34 | value as the functionPrototype optional argument of FunctionCreate. |
| 35 | [...] |
| 36 | |
| 37 | 9.2.1 [[Call]] ( thisArgument, argumentsList) |
| 38 | |
| 39 | [...] |
| 40 | 7. Let result be OrdinaryCallEvaluateBody(F, argumentsList). |
| 41 | [...] |
| 42 | |
| 43 | 9.2.1.3 OrdinaryCallEvaluateBody ( F, argumentsList ) |
| 44 | |
| 45 | 1. Let status be FunctionDeclarationInstantiation(F, argumentsList). |
| 46 | [...] |
| 47 | |
| 48 | 9.2.12 FunctionDeclarationInstantiation(func, argumentsList) |
| 49 | |
| 50 | [...] |
| 51 | 23. Let iteratorRecord be Record {[[iterator]]: |
| 52 | CreateListIterator(argumentsList), [[done]]: false}. |
| 53 | 24. If hasDuplicates is true, then |
| 54 | [...] |
| 55 | 25. Else, |
| 56 | b. Let formalStatus be IteratorBindingInitialization for formals with |
| 57 | iteratorRecord and env as arguments. |
| 58 | [...] |
| 59 | |
| 60 | 13.3.3.5 Runtime Semantics: BindingInitialization |
| 61 | |
| 62 | BindingProperty : PropertyName : BindingElement |
| 63 | |
| 64 | 1. Let P be the result of evaluating PropertyName |
| 65 | 2. ReturnIfAbrupt(P). |
| 66 | ---*/ |
| 67 | function thrower() { |
| 68 | throw new Test262Error(); |
| 69 | } |
| 70 | |
| 71 | class C { |
| 72 | method({ [thrower()]: x }) {} |
| 73 | }; |
| 74 | |
| 75 | var c = new C(); |
| 76 | |
| 77 | assert.throws(Test262Error, function() { |
| 78 | c.method({}); |
| 79 | }); |