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

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

Issue 10977027: Update all occurrences of raw strings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Don't disable just yet. 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/call_site_type_inferer_test.dart
diff --git a/tests/compiler/dart2js/call_site_type_inferer_test.dart b/tests/compiler/dart2js/call_site_type_inferer_test.dart
index f34a5cd8c2ff60c49c1408bc1dd222c449d5cb55..8176f7547f1f1ea850ea1b7f16b2d38d4cf47fb0 100644
--- a/tests/compiler/dart2js/call_site_type_inferer_test.dart
+++ b/tests/compiler/dart2js/call_site_type_inferer_test.dart
@@ -25,35 +25,35 @@ void compileAndFind(String code,
return check(compiler.backend, member);
}
-const String TEST_1 = @"""
+const String TEST_1 = r"""
class A {
x(p) => p;
}
main() { new A().x("s"); }
""";
-const String TEST_2 = @"""
+const String TEST_2 = r"""
class A {
x(p) => p;
}
main() { new A().x(1); }
""";
-const String TEST_3 = @"""
+const String TEST_3 = r"""
class A {
x(p) => x(p - 1);
}
main() { new A().x(1); }
""";
-const String TEST_4 = @"""
+const String TEST_4 = r"""
class A {
x(p) => x(p - 1);
}
main() { new A().x(1.5); }
""";
-const String TEST_5 = @"""
+const String TEST_5 = r"""
class A {
x(p) => p;
}
@@ -143,7 +143,7 @@ const String TEST_13 = r"""
}
""";
-const String TEST_14 = @"""
+const String TEST_14 = r"""
class A {
x(p1, [p2 = "s"]) => 1;
}
@@ -152,7 +152,7 @@ const String TEST_14 = @"""
}
""";
-const String TEST_15 = @"""
+const String TEST_15 = r"""
class A {
x(p1, [p2 = true]) => 1;
}
@@ -164,7 +164,7 @@ const String TEST_15 = @"""
}
""";
-const String TEST_16 = @"""
+const String TEST_16 = r"""
class A {
x(p1, [p2 = 1, p3 = "s"]) => 1;
}
@@ -179,7 +179,7 @@ const String TEST_16 = @"""
}
""";
-const String TEST_17 = @"""
+const String TEST_17 = r"""
class A {
x(p1, [p2 = 1, p3 = "s"]) => 1;
}

Powered by Google App Engine
This is Rietveld 408576698