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

Unified Diff: compiler/javatests/com/google/dart/compiler/parser/ParserEventsTest.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/ParserEventsTest.java
diff --git a/compiler/javatests/com/google/dart/compiler/parser/ParserEventsTest.java b/compiler/javatests/com/google/dart/compiler/parser/ParserEventsTest.java
index 99c7fa46ce4cc6f508b918777cb81e9208b461e6..d74e22bc22d85f55f6890badcb7d329159a1408b 100644
--- a/compiler/javatests/com/google/dart/compiler/parser/ParserEventsTest.java
+++ b/compiler/javatests/com/google/dart/compiler/parser/ParserEventsTest.java
@@ -720,8 +720,10 @@ public class ParserEventsTest extends AbstractParserTest {
@Override
public void testStringsErrors() {
- parseUnitErrors("StringsErrorsNegativeTest.dart", "Unexpected token 'ILLEGAL'", 7, 13,
- "Unexpected token 'ILLEGAL'", 9, 9);
+ parseUnitErrors("StringsErrorsNegativeTest.dart",
+ "Unexpected token 'ILLEGAL'", 7, 13,
+ "Unexpected token 'ILLEGAL'", 9, 9,
+ "Unexpected token 'ILLEGAL'", 11, 9);
compareMarks(NativeBody, TopLevelElement, PostfixExpression, ClassMember, CompilationUnit,
VariableDeclaration, Identifier, BinaryExpression, ClassBody,
ConditionalExpression, Literal, Expression, MethodName, ExpressionStatement, Block,

Powered by Google App Engine
This is Rietveld 408576698