tor-browser

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

gen-meth-obj-ptrn-rest-val-obj.js (2888B)


      1 // This file was procedurally generated from the following sources:
      2 // - src/dstr-binding/obj-ptrn-rest-val-obj.case
      3 // - src/dstr-binding/default/cls-expr-gen-meth.template
      4 /*---
      5 description: Rest object contains just unextracted data (class expression method)
      6 esid: sec-class-definitions-runtime-semantics-evaluation
      7 features: [object-rest, generators, destructuring-binding]
      8 flags: [generated]
      9 includes: [propertyHelper.js]
     10 info: |
     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           i. Let status be the result of performing
     24              PropertyDefinitionEvaluation for m with arguments proto and
     25              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 
     65 var callCount = 0;
     66 var C = class {
     67  *method({a, b, ...rest}) {
     68    assert.sameValue(rest.a, undefined);
     69    assert.sameValue(rest.b, undefined);
     70 
     71    verifyProperty(rest, "x", {
     72      enumerable: true,
     73      writable: true,
     74      configurable: true,
     75      value: 1
     76    });
     77 
     78    verifyProperty(rest, "y", {
     79      enumerable: true,
     80      writable: true,
     81      configurable: true,
     82      value: 2
     83    });
     84    callCount = callCount + 1;
     85  }
     86 };
     87 
     88 new C().method({x: 1, y: 2, a: 5, b: 3}).next();
     89 assert.sameValue(callCount, 1, 'method invoked exactly once');
     90 
     91 reportCompare(0, 0);