mirror of https://github.com/tc39/test262.git
19 lines
469 B
JavaScript
19 lines
469 B
JavaScript
|
// Copyright (C) 2016 the V8 project authors. All rights reserved.
|
||
|
// This code is governed by the BSD license found in the LICENSE file.
|
||
|
/*---
|
||
|
esid: sec-generator-function-definitions
|
||
|
es6id: 14.4
|
||
|
description: >
|
||
|
YieldExpression operand may not include the `in` keyword in contexts where it
|
||
|
is disallowed
|
||
|
info: |
|
||
|
Syntax
|
||
|
|
||
|
yield [no LineTerminator here] AssignmentExpression[?In, +Yield]
|
||
|
negative: SyntaxError
|
||
|
---*/
|
||
|
|
||
|
function* g() {
|
||
|
for (yield '' in {}; ; ) ;
|
||
|
}
|