blob: 0817a455a4cf6d2dd3976a8dd7a720a84ac9bda4 [file] [log] [blame]
// This file was procedurally generated from the following sources:
// - src/computed-property-names/computed-property-name-from-expression-coalesce.case
// - src/computed-property-names/evaluation/object-literal.template
/*---
description: Computed property name from coalesce (ComputedPropertyName in ObjectLiteral)
esid: prod-ComputedPropertyName
features: [computed-property-names]
flags: [generated]
info: |
ObjectLiteral:
{ PropertyDefinitionList }
PropertyDefinitionList:
PropertyDefinition
PropertyDefinition:
PropertyName: AssignmentExpression
PropertyName:
ComputedPropertyName
ComputedPropertyName:
[ AssignmentExpression ]
---*/
let x;
let o = {
[x ?? 1]: 2
};
assert.sameValue(
o[x ?? 1],
2
);
assert.sameValue(
o[String(x ?? 1)],
2
);
assert.sameValue(x, undefined);