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

Unified Diff: compiler/javatests/com/google/dart/compiler/parser/ValidatingSyntaxTest.java

Issue 9414015: Issue 1551. Report error for new-line in single-line raw string. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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: compiler/javatests/com/google/dart/compiler/parser/ValidatingSyntaxTest.java
diff --git a/compiler/javatests/com/google/dart/compiler/parser/ValidatingSyntaxTest.java b/compiler/javatests/com/google/dart/compiler/parser/ValidatingSyntaxTest.java
index 1d59546c670175d2dec657b86c99c41ba3b35930..27fbce1bbe819d95b19fb53fe7c78a34d24ed661 100755
--- a/compiler/javatests/com/google/dart/compiler/parser/ValidatingSyntaxTest.java
+++ b/compiler/javatests/com/google/dart/compiler/parser/ValidatingSyntaxTest.java
@@ -68,7 +68,8 @@ public class ValidatingSyntaxTest extends AbstractParserTest {
public void testStringsErrors() {
parseUnitErrors("StringsErrorsNegativeTest.dart",
"Unexpected token 'ILLEGAL'", 7, 13,
- "Unexpected token 'ILLEGAL'", 9, 9);
+ "Unexpected token 'ILLEGAL'", 9, 9,
+ "Unexpected token 'ILLEGAL'", 11, 9);
}
@Override

Powered by Google App Engine
This is Rietveld 408576698