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

Unified Diff: tests/language/library_prefixes_test1.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/library_prefixes_test1.dart
diff --git a/tests/language/library_prefixes_test1.dart b/tests/language/library_prefixes_test1.dart
index 1231e97513b7c8ad88700579df989338b137da81..53ab581a2c6b57e41b4265bbb1343af4c91f9db9 100644
--- a/tests/language/library_prefixes_test1.dart
+++ b/tests/language/library_prefixes_test1.dart
@@ -3,12 +3,12 @@
// BSD-style license that can be found in the LICENSE file.
class Constants {
- static final PI = 3.14;
- static final foo = 1;
+ static const PI = 3.14;
+ static const foo = 1;
}
class A {
- static final y = -1;
+ static const y = -1;
int x;
A() : x = 1 {}
A.named() : x = 3 {}

Powered by Google App Engine
This is Rietveld 408576698