Add await test: await is valid in non-module strict mode code.

This commit is contained in:
Rick Waldron 2020-09-17 10:27:24 -04:00
parent 057a31e15e
commit 67382a1e8e
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
// Copyright (C) 2020 Rick Waldron. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
description: >
Object literal shorthands are limited to valid identifier references. await is valid in non-module strict mode code.
esid: sec-object-initializer
flags: [noStrict]
info: |
PropertyDefinition:
IdentifierReference
CoverInitializedName
PropertyName : AssignmentExpression
MethodDefinition
Identifier : IdentifierName but not ReservedWord
---*/
var await = 1;
(function() {
"use strict";
({
await
});
});