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

Unified Diff: runtime/bin/directory_impl.dart

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/bin/common.dart ('k') | runtime/bin/file.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/directory_impl.dart
===================================================================
--- runtime/bin/directory_impl.dart (revision 11416)
+++ runtime/bin/directory_impl.dart (working copy)
@@ -4,16 +4,16 @@
class _Directory implements Directory {
- static final CREATE_REQUEST = 0;
- static final DELETE_REQUEST = 1;
- static final EXISTS_REQUEST = 2;
- static final CREATE_TEMP_REQUEST = 3;
- static final LIST_REQUEST = 4;
- static final RENAME_REQUEST = 5;
+ static const CREATE_REQUEST = 0;
+ static const DELETE_REQUEST = 1;
+ static const EXISTS_REQUEST = 2;
+ static const CREATE_TEMP_REQUEST = 3;
+ static const LIST_REQUEST = 4;
+ static const RENAME_REQUEST = 5;
- static final SUCCESS_RESPONSE = 0;
- static final ILLEGAL_ARGUMENT_RESPONSE = 1;
- static final OSERROR_RESPONSE = 2;
+ static const SUCCESS_RESPONSE = 0;
+ static const ILLEGAL_ARGUMENT_RESPONSE = 1;
+ static const OSERROR_RESPONSE = 2;
_Directory(String this._path);
_Directory.fromPath(Path path) : this(path.toNativePath());
« no previous file with comments | « runtime/bin/common.dart ('k') | runtime/bin/file.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698