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

Unified Diff: test/message/for-in-let-loop-initializers-strict.out

Issue 1033823002: [es6] emit error when for-in loop declarations are initialized in strict mode (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add TODO Created 5 years, 9 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/for-in-let-loop-initializers-strict.out
diff --git a/test/message/for-in-let-loop-initializers-strict.out b/test/message/for-in-let-loop-initializers-strict.out
new file mode 100644
index 0000000000000000000000000000000000000000..6c8ca9dfe927ee73ffe3f84fdebde96a25f42724
--- /dev/null
+++ b/test/message/for-in-let-loop-initializers-strict.out
@@ -0,0 +1,7 @@
+# Copyright 2014 the V8 project authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+*%(basename)s:8: SyntaxError: for-in loop variable declaration may not have an initializer.
+ for (let x = void 0 in [1, 2, 3]) {
+ ^^^^^^^^^^
+SyntaxError: for-in loop variable declaration may not have an initializer.

Powered by Google App Engine
This is Rietveld 408576698