Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(663)

Unified Diff: test/message/let-lexical-declaration-destructuring-brace-in-single-statement.js

Issue 2697193007: Report unexpected lexical decl also without destructuring (Closed)
Patch Set: Add brace Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/message/let-lexical-declaration-destructuring-brace-in-single-statement.js
diff --git a/test/message/let-lexical-declaration-in-single-statement.js b/test/message/let-lexical-declaration-destructuring-brace-in-single-statement.js
similarity index 84%
copy from test/message/let-lexical-declaration-in-single-statement.js
copy to test/message/let-lexical-declaration-destructuring-brace-in-single-statement.js
index dcfa6c14366c31175bc4043a74bfa49023389aaa..1afcc8ccc896b53c89cbacb30a2d69003a683c45 100644
--- a/test/message/let-lexical-declaration-in-single-statement.js
+++ b/test/message/let-lexical-declaration-destructuring-brace-in-single-statement.js
@@ -2,4 +2,4 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-with ({}) let [a] = [];
+with ({}) let {a: x} = {a: 42};

Powered by Google App Engine
This is Rietveld 408576698