tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

gen-meth-obj-ptrn-rest-getter.js (2078B)


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