diff options
Diffstat (limited to 'js/src/tests/test262/language/expressions/object/cpn-obj-lit-computed-property-name-from-function-declaration.js')
-rw-r--r-- | js/src/tests/test262/language/expressions/object/cpn-obj-lit-computed-property-name-from-function-declaration.js | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/expressions/object/cpn-obj-lit-computed-property-name-from-function-declaration.js b/js/src/tests/test262/language/expressions/object/cpn-obj-lit-computed-property-name-from-function-declaration.js new file mode 100644 index 0000000000..e18efd7a9a --- /dev/null +++ b/js/src/tests/test262/language/expressions/object/cpn-obj-lit-computed-property-name-from-function-declaration.js @@ -0,0 +1,41 @@ +// This file was procedurally generated from the following sources: +// - src/computed-property-names/computed-property-name-from-function-declaration.case +// - src/computed-property-names/evaluation/object-literal.template +/*--- +description: Computed property name from function (ComputedPropertyName in ObjectLiteral) +esid: prod-ComputedPropertyName +features: [computed-property-names] +flags: [generated] +info: | + ObjectLiteral: + { PropertyDefinitionList } + + PropertyDefinitionList: + PropertyDefinition + + PropertyDefinition: + PropertyName: AssignmentExpression + + PropertyName: + ComputedPropertyName + + ComputedPropertyName: + [ AssignmentExpression ] +---*/ +function f() {} + + +let o = { + [f()]: 1 +}; + +assert.sameValue( + o[f()], + 1 +); +assert.sameValue( + o[String(f())], + 1 +); + +reportCompare(0, 0); |