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

Unified Diff: pkg/fixnum/test/int_64_vm_test.dart

Issue 10919024: - Change "static final" to "static const" in the (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: 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
« no previous file with comments | « pkg/fixnum/int64.dart ('k') | pkg/intl/bidi_utils.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/fixnum/test/int_64_vm_test.dart
===================================================================
--- pkg/fixnum/test/int_64_vm_test.dart (revision 11633)
+++ pkg/fixnum/test/int_64_vm_test.dart (working copy)
@@ -34,7 +34,7 @@
test.doTestBinary(new BinaryOp("remainder", (a, b) => a.remainder(b)));
}
-final int DISCARD = 0;
+const int DISCARD = 0;
int64 _randomInt64() {
int i = 0;
@@ -97,8 +97,8 @@
}
class int64VMTest {
- static final int BASE_VALUES = 32;
- static final int RANDOM_TESTS = 32;
+ static const int BASE_VALUES = 32;
+ static const int RANDOM_TESTS = 32;
List<int64> TEST_VALUES;
int64VMTest() {
« no previous file with comments | « pkg/fixnum/int64.dart ('k') | pkg/intl/bidi_utils.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698