summaryrefslogtreecommitdiff
path: root/src/async-generators/yield-as-label-identifier.case
blob: 0fc69be894fc6672cb6dabb6c0412d533dfa2f6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 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
desc: >
  yield is a reserved keyword within generator function bodies and may not be
  used as a label identifier.
info: |
  LabelIdentifier : Identifier

  It is a Syntax Error if this production has a [Yield] parameter and
  StringValue of Identifier is "yield".
negative:
  phase: parse
  type: SyntaxError
template: syntax
---*/

//- setup
throw "Test262: This statement should not be evaluated.";
//- body
  yield: ;