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

Unified Diff: tests/compiler/dart2js/unparser_test.dart

Issue 10920066: issue 4817 fixed. Implemented raw strings with 'r' instead of '@' for dart2js (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebased, weird problem with patch in string_interpolation_test.dart hopefully fixed Created 8 years, 3 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: tests/compiler/dart2js/unparser_test.dart
diff --git a/tests/compiler/dart2js/unparser_test.dart b/tests/compiler/dart2js/unparser_test.dart
index 5186a136c9d0d4a83ea5357942289b8446eecd7f..b39d1311402ba1b098506c3167cc21a251dd028d 100644
--- a/tests/compiler/dart2js/unparser_test.dart
+++ b/tests/compiler/dart2js/unparser_test.dart
@@ -21,7 +21,7 @@ testUnparseMember(String member) {
Expect.equals(member, unparse(node));
}
-const coreLib = @'''
+const coreLib = r'''
#library('corelib');
class Object {}
interface bool {}
@@ -41,7 +41,7 @@ class Math {
}
''';
-const ioLib = @'''
+const ioLib = r'''
#library('io');
class Platform {
static int operatingSystem;

Powered by Google App Engine
This is Rietveld 408576698