From 67382a1e8e65257278590ca3c356a9454fe9e434 Mon Sep 17 00:00:00 2001 From: Rick Waldron Date: Thu, 17 Sep 2020 10:27:24 -0400 Subject: [PATCH] Add await test: await is valid in non-module strict mode code. --- .../identifier-shorthand-await-strict-mode.js | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 test/language/expressions/object/identifier-shorthand-await-strict-mode.js diff --git a/test/language/expressions/object/identifier-shorthand-await-strict-mode.js b/test/language/expressions/object/identifier-shorthand-await-strict-mode.js new file mode 100644 index 0000000000..f789d2ee85 --- /dev/null +++ b/test/language/expressions/object/identifier-shorthand-await-strict-mode.js @@ -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 + }); +});