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

Unified Diff: tests/language/multiline_newline_cr.dart

Issue 2847793002: Update handling of multiline strings to specification. (Closed)
Patch Set: Work around analyzer bug and update status file. Created 3 years, 7 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 | « tests/language/language_kernel.status ('k') | tests/language/multiline_newline_crlf.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/multiline_newline_cr.dart
diff --git a/tests/language/multiline_newline_cr.dart b/tests/language/multiline_newline_cr.dart
index f7251594e76307595b63f5ca6522a52c8685bad7..f793f54cfec176b273b46c7fabc17a769013672d 100644
--- a/tests/language/multiline_newline_cr.dart
+++ b/tests/language/multiline_newline_cr.dart
@@ -7,3 +7,7 @@ library multiline_newline_cr;
const constantMultilineString = """
a
b
""";
var nonConstantMultilineString = """
a
b
""";
+
+const constantRawMultilineString = r"""
\a
\b
""";
+
+var nonConstantRawMultilineString = r"""
\a
\b
""";
« no previous file with comments | « tests/language/language_kernel.status ('k') | tests/language/multiline_newline_crlf.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698