meth-dflt-obj-ptrn-rest-getter.js (1869B)
1 // This file was procedurally generated from the following sources: 2 // - src/dstr-binding/obj-ptrn-rest-getter.case 3 // - src/dstr-binding/default/meth-dflt.template 4 /*--- 5 description: Getter is called when obj is being deconstructed to a rest Object (method (default parameter)) 6 esid: sec-runtime-semantics-definemethod 7 features: [object-rest, destructuring-binding, default-parameters] 8 flags: [generated] 9 includes: [propertyHelper.js] 10 info: | 11 MethodDefinition : PropertyName ( StrictFormalParameters ) { FunctionBody } 12 13 [...] 14 6. Let closure be FunctionCreate(kind, StrictFormalParameters, 15 FunctionBody, scope, strict). If functionPrototype was passed as a 16 parameter then pass its value as the functionPrototype optional argument 17 of FunctionCreate. 18 [...] 19 20 9.2.1 [[Call]] ( thisArgument, argumentsList) 21 22 [...] 23 7. Let result be OrdinaryCallEvaluateBody(F, argumentsList). 24 [...] 25 26 9.2.1.3 OrdinaryCallEvaluateBody ( F, argumentsList ) 27 28 1. Let status be FunctionDeclarationInstantiation(F, argumentsList). 29 [...] 30 31 9.2.12 FunctionDeclarationInstantiation(func, argumentsList) 32 33 [...] 34 23. Let iteratorRecord be Record {[[iterator]]: 35 CreateListIterator(argumentsList), [[done]]: false}. 36 24. If hasDuplicates is true, then 37 [...] 38 25. Else, 39 b. Let formalStatus be IteratorBindingInitialization for formals with 40 iteratorRecord and env as arguments. 41 [...] 42 ---*/ 43 var count = 0; 44 45 var callCount = 0; 46 var obj = { 47 method({...x} = { get v() { count++; return 2; } }) { 48 assert.sameValue(count, 1); 49 50 verifyProperty(x, "v", { 51 enumerable: true, 52 writable: true, 53 configurable: true, 54 value: 2 55 }); 56 callCount = callCount + 1; 57 } 58 }; 59 60 obj.method(); 61 assert.sameValue(callCount, 1, 'method invoked exactly once'); 62 63 reportCompare(0, 0);