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

Unified Diff: test/message/redeclaration1.js

Issue 2447143005: [parsing] When failing due to variable redeclaration, point at the variable. (Closed)
Patch Set: Address review comments. Created 4 years, 2 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
« no previous file with comments | « test/message/modules-import-redeclare3.out ('k') | test/message/redeclaration1.out » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/message/redeclaration1.js
diff --git a/test/message/unicode-escape-invalid-2.js b/test/message/redeclaration1.js
similarity index 86%
copy from test/message/unicode-escape-invalid-2.js
copy to test/message/redeclaration1.js
index b83665b1972e0bf26fded82d7edd44fffc3cc829..56a891a2b0a17c421309405c753b7870e69b5cd4 100644
--- a/test/message/unicode-escape-invalid-2.js
+++ b/test/message/redeclaration1.js
@@ -2,4 +2,5 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-print("\u162P");
+let foo = 1;
+let foo = 2;
« no previous file with comments | « test/message/modules-import-redeclare3.out ('k') | test/message/redeclaration1.out » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698