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

Unified Diff: runtime/vm/snapshot_test.cc

Issue 10883071: - Change "static final" to "static const" in the runtime/ directory. (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 | « runtime/vm/parser_test.cc ('k') | runtime/vm/snapshot_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/snapshot_test.cc
===================================================================
--- runtime/vm/snapshot_test.cc (revision 11416)
+++ runtime/vm/snapshot_test.cc (working copy)
@@ -776,8 +776,8 @@
" final int fld2;\n"
" final int bigint_fld = 0xfffffffffff;\n"
" static int fld3;\n"
- " static final int smi_sfld = 10;\n"
- " static final int bigint_sfld = 0xfffffffffff;\n"
+ " static const int smi_sfld = 10;\n"
+ " static const int bigint_sfld = 0xfffffffffff;\n"
"}\n"
"class FieldsTest {\n"
" static Fields testMain() {\n"
@@ -909,7 +909,7 @@
" int fld1;"
" final int fld2;"
" static int fld3;"
- " static final int fld4 = 10;"
+ " static const int fld4 = 10;"
"}"
"class FieldsTest {"
" static Fields testMain() {"
« no previous file with comments | « runtime/vm/parser_test.cc ('k') | runtime/vm/snapshot_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698