test262/test/language/statements/let/syntax/let-newline-yield-in-genera...

26 lines
798 B
JavaScript
Raw Normal View History

// Copyright (C) 2017 Mozilla Corporation. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Jeff Walden <jwalden+code@mit.edu>
esid: sec-let-and-const-declarations
description: >
`let yield` does not permit ASI in between, as `yield` is a BindingIdentifier
info: |
`yield` is a perfectly cromulent binding name in any context grammatically, just
prohibited by static semantics in some contexts. Therefore ASI can never apply
between `let` (where a LexicalDeclaration is permitted) and `yield`,
so a subsequent `0` where `=` was expected is a syntax error.
negative:
phase: early
type: SyntaxError
2017-10-26 23:05:18 +02:00
features: [generators]
---*/
throw "Test262: This statement should not be evaluated.";
function* f() {
let
yield 0;
}