blob: 5430aa547e2cd8c2074da7a6be78ad6bcef7ec31 [file] [edit]
// 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
$DONOTEVALUATE();
//- body
yield: ;