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

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

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.out
diff --git a/test/message/let-lexical-declaration-in-single-statement.out b/test/message/let-lexical-declaration-destructuring-brace-in-single-statement.out
similarity index 85%
copy from test/message/let-lexical-declaration-in-single-statement.out
copy to test/message/let-lexical-declaration-destructuring-brace-in-single-statement.out
index 2bab7758651d5f8f6ff1843c60c68e6cb7446926..352adae7cbb6c577c4bcfa35476f48dd732e6541 100644
--- a/test/message/let-lexical-declaration-in-single-statement.out
+++ b/test/message/let-lexical-declaration-destructuring-brace-in-single-statement.out
@@ -1,4 +1,4 @@
*%(basename)s:5: SyntaxError: Lexical declaration cannot appear in a single-statement context
-with ({}) let [a] = [];
+with ({}) let {a: x} = {a: 42};
^^^
SyntaxError: Lexical declaration cannot appear in a single-statement context

Powered by Google App Engine
This is Rietveld 408576698