blob: 7284a2912676ce5e105c444ee0dce4901e0e39be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// |reftest| error:SyntaxError module
// Copyright (C) 2017 André Bargull. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
esid: sec-identifiers-static-semantics-early-errors
description: >
`await` is a reserved identifier in module code and may not be used as a label.
info: |
LabelIdentifier : await
It is a Syntax Error if the goal symbol of the syntactic grammar is Module.
negative:
phase: parse
type: SyntaxError
flags: [module]
---*/
$DONOTEVALUATE();
await: 1;
|