Add test for ({* identifier}) (#2060)

Counterpart to language/expressions/object/prop-def-invalid-async-prefix.js.
This commit is contained in:
Timothy Gu 2019-02-04 11:03:14 -08:00 committed by Leo Balter
parent b4cf5de2e8
commit bafa05316e
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
// Copyright (C) 2019 Tiancheng "Timothy" Gu. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
* is not a valid prefix of an identifier reference
esid: sec-object-initializer
info: |
PropertyDefinition:
IdentifierReference
CoverInitializedName
PropertyName : AssignmentExpression
MethodDefinition
negative:
phase: parse
type: SyntaxError
---*/
$DONOTEVALUATE();
({* foo});