mirror of https://github.com/tc39/test262.git
40 lines
1.0 KiB
JavaScript
40 lines
1.0 KiB
JavaScript
|
// This file was procedurally generated from the following sources:
|
||
|
// - src/identifier-names/delete-escaped.case
|
||
|
// - src/identifier-names/default/covered-obj-prop-name.template
|
||
|
/*---
|
||
|
description: delete is a valid identifier name, using escape (PropertyName in a CoverParenthesizedExpressionAndArrowParameterList)
|
||
|
esid: prod-PropertyDefinition
|
||
|
flags: [generated]
|
||
|
info: |
|
||
|
ObjectLiteral :
|
||
|
{ PropertyDefinitionList }
|
||
|
{ PropertyDefinitionList , }
|
||
|
|
||
|
PropertyDefinitionList:
|
||
|
PropertyDefinition
|
||
|
PropertyDefinitionList , PropertyDefinition
|
||
|
|
||
|
PropertyDefinition:
|
||
|
IdentifierReference
|
||
|
PropertyName : AssignmentExpression
|
||
|
MethodDefinition
|
||
|
... AssignmentExpression
|
||
|
...
|
||
|
|
||
|
PropertyName:
|
||
|
LiteralPropertyName
|
||
|
...
|
||
|
|
||
|
LiteralPropertyName:
|
||
|
IdentifierName
|
||
|
...
|
||
|
|
||
|
Reserved Words
|
||
|
|
||
|
A reserved word is an IdentifierName that cannot be used as an Identifier.
|
||
|
---*/
|
||
|
|
||
|
var obj = ({ \u0064elete: 42 });
|
||
|
|
||
|
assert.sameValue(obj['delete'], 42, 'property exists');
|