keith_miller@apple.com | bcc77f2 | 2016-07-15 06:03:25 +0000 | [diff] [blame] | 1 | // Copyright (C) 2013 the V8 project authors. All rights reserved. |
2 | // This code is governed by the BSD license found in the LICENSE file. | ||||
3 | |||||
4 | /*--- | ||||
5 | description: > | ||||
6 | `yield` is a reserved keyword within generator function bodies and may | ||||
7 | not be used as a label. | ||||
8 | features: [generators] | ||||
9 | es6id: 12.1.1 | ||||
10 | negative: SyntaxError | ||||
11 | ---*/ | ||||
12 | |||||
13 | class A { | ||||
14 | *g() { | ||||
15 | yield: 1; | ||||
16 | } | ||||
17 | } |