2017-05-02 21:09:28 +02:00
|
|
|
// Copyright (C) 2017 André Bargull. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
|
|
|
/*---
|
|
|
|
esid: sec-for-in-and-for-of-statements
|
|
|
|
description: >
|
|
|
|
ExpressionStatement has a lookahead restriction for `let [`.
|
|
|
|
info: |
|
|
|
|
ExpressionStatement[Yield, Await] :
|
|
|
|
[lookahead ∉ { {, function, async [no LineTerminator here] function, class, let [ }]
|
|
|
|
Expression[+In, ?Yield, ?Await] ;
|
|
|
|
negative:
|
2017-12-03 06:06:42 +01:00
|
|
|
phase: parse
|
2017-05-02 21:09:28 +02:00
|
|
|
type: SyntaxError
|
|
|
|
flags: [noStrict]
|
|
|
|
---*/
|
|
|
|
|
2018-10-11 16:59:24 +02:00
|
|
|
$DONOTEVALUATE();
|
2017-04-29 22:31:08 +02:00
|
|
|
|
2017-05-02 21:09:28 +02:00
|
|
|
for (var x of []) let
|
|
|
|
[a] = 0;
|