summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/expressions/object/cpn-obj-lit-computed-property-name-from-exponetiation-expression.js
blob: 78edffafa0c9e94160f56e065d6a7ca3648c703d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// This file was procedurally generated from the following sources:
// - src/computed-property-names/computed-property-name-from-exponetiation-expression.case
// - src/computed-property-names/evaluation/object-literal.template
/*---
description: Computed property name from exponentiation expression (ComputedPropertyName in ObjectLiteral)
esid: prod-ComputedPropertyName
features: [computed-property-names, exponentiation]
flags: [generated]
info: |
    ObjectLiteral:
      { PropertyDefinitionList }

    PropertyDefinitionList:
      PropertyDefinition

    PropertyDefinition:
      PropertyName: AssignmentExpression

    PropertyName:
      ComputedPropertyName

    ComputedPropertyName:
      [ AssignmentExpression ]
---*/


let o = {
  [2 ** 2]: 4
};

assert.sameValue(
  o[2 ** 2],
  4
);
assert.sameValue(
  o[String(2 ** 2)],
  4
);

reportCompare(0, 0);