tor-browser

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

cpn-obj-lit-computed-property-name-from-generator-function-declaration.js (872B)


      1 // This file was procedurally generated from the following sources:
      2 // - src/computed-property-names/computed-property-name-from-generator-function-declaration.case
      3 // - src/computed-property-names/evaluation/object-literal.template
      4 /*---
      5 description: Computed property name from generator function (ComputedPropertyName in ObjectLiteral)
      6 esid: prod-ComputedPropertyName
      7 features: [computed-property-names]
      8 flags: [generated]
      9 info: |
     10    ObjectLiteral:
     11      { PropertyDefinitionList }
     12 
     13    PropertyDefinitionList:
     14      PropertyDefinition
     15 
     16    PropertyDefinition:
     17      PropertyName: AssignmentExpression
     18 
     19    PropertyName:
     20      ComputedPropertyName
     21 
     22    ComputedPropertyName:
     23      [ AssignmentExpression ]
     24 ---*/
     25 function * g() { return 1; }
     26 
     27 
     28 let o = {
     29  [g()]: 1
     30 };
     31 
     32 assert.sameValue(
     33  o[g()],
     34  1
     35 );
     36 assert.sameValue(
     37  o[String(g())],
     38  1
     39 );
     40 
     41 reportCompare(0, 0);