mirror of https://github.com/tc39/test262.git
23 lines
600 B
JavaScript
23 lines
600 B
JavaScript
// This file was procedurally generated from the following sources:
|
|
// - src/identifier-names/import-escaped.case
|
|
// - src/identifier-names/default/member-expr.template
|
|
/*---
|
|
description: import is a valid identifier name, using escape (MemberExpression IdentifierName)
|
|
esid: prod-PropertyDefinition
|
|
flags: [generated]
|
|
info: |
|
|
MemberExpression:
|
|
...
|
|
MemberExpression . IdentifierName
|
|
|
|
Reserved Words
|
|
|
|
A reserved word is an IdentifierName that cannot be used as an Identifier.
|
|
---*/
|
|
|
|
var obj = {};
|
|
|
|
obj.\u0069mport = 42;
|
|
|
|
assert.sameValue(obj['import'], 42, 'property exists');
|