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-multiplicative-expression-mult.js (867B)


      1 // This file was procedurally generated from the following sources:
      2 // - src/computed-property-names/computed-property-name-from-multiplicative-expression-mult.case
      3 // - src/computed-property-names/evaluation/object-literal.template
      4 /*---
      5 description: Computed property name from multiplicative expression "multiply" (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 
     26 
     27 let o = {
     28  [1 * 1]: 1
     29 };
     30 
     31 assert.sameValue(
     32  o[1 * 1],
     33  1
     34 );
     35 assert.sameValue(
     36  o[String(1 * 1)],
     37  1
     38 );
     39 
     40 reportCompare(0, 0);