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

Unified Diff: compiler/javatests/com/google/dart/compiler/parser/SyntaxTest.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/SyntaxTest.java
diff --git a/compiler/javatests/com/google/dart/compiler/parser/SyntaxTest.java b/compiler/javatests/com/google/dart/compiler/parser/SyntaxTest.java
index 72918e305721d4f499003a219f9530e3a2595a9c..d6f64d414f5dac88cd6c3f0dadaf781cd4356409 100644
--- a/compiler/javatests/com/google/dart/compiler/parser/SyntaxTest.java
+++ b/compiler/javatests/com/google/dart/compiler/parser/SyntaxTest.java
@@ -99,7 +99,8 @@ public class SyntaxTest 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);
}
public void testNullAssign() {

Powered by Google App Engine
This is Rietveld 408576698