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

Unified Diff: tests/language/string_interpolate_test.dart

Issue 10837359: Language tests updated to use const instead of final. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Instance fields are never const. Created 8 years, 4 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/language/string_interpolate_test.dart
diff --git a/tests/language/string_interpolate_test.dart b/tests/language/string_interpolate_test.dart
index 4effbd950d762fde78c2c2aab54fea2d41634b9b..f606f13f6afc0b13a0ac4f7b0825ca3c0cab6049 100644
--- a/tests/language/string_interpolate_test.dart
+++ b/tests/language/string_interpolate_test.dart
@@ -21,9 +21,9 @@ class ThingamaBob extends WhatchamaCallIt {
class StringInterpolateTest {
- static final String A = "svin";
- static final String B = "hest";
- static final int N = 1 + 1;
+ static const String A = "svin";
+ static const String B = "hest";
+ static const int N = 1 + 1;
static String Printers;
static String AAR_Printers;

Powered by Google App Engine
This is Rietveld 408576698