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

Unified Diff: lib/compiler/implementation/ssa/types.dart

Issue 10880068: - Change "static final" to "static const" in the lib/ 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 | « lib/compiler/implementation/ssa/tracer.dart ('k') | lib/compiler/implementation/tree/nodes.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/compiler/implementation/ssa/types.dart
===================================================================
--- lib/compiler/implementation/ssa/types.dart (revision 11400)
+++ lib/compiler/implementation/ssa/types.dart (working copy)
@@ -40,24 +40,24 @@
}
}
- static final HType CONFLICTING = const HConflictingType();
- static final HType UNKNOWN = const HUnknownType();
- static final HType BOOLEAN = const HBooleanType();
- static final HType NUMBER = const HNumberType();
- static final HType INTEGER = const HIntegerType();
- static final HType DOUBLE = const HDoubleType();
- static final HType INDEXABLE_PRIMITIVE = const HIndexablePrimitiveType();
- static final HType STRING = const HStringType();
- static final HType READABLE_ARRAY = const HReadableArrayType();
- static final HType MUTABLE_ARRAY = const HMutableArrayType();
- static final HType EXTENDABLE_ARRAY = const HExtendableArrayType();
- static final HType NULL = const HNullType();
+ static const HType CONFLICTING = const HConflictingType();
+ static const HType UNKNOWN = const HUnknownType();
+ static const HType BOOLEAN = const HBooleanType();
+ static const HType NUMBER = const HNumberType();
+ static const HType INTEGER = const HIntegerType();
+ static const HType DOUBLE = const HDoubleType();
+ static const HType INDEXABLE_PRIMITIVE = const HIndexablePrimitiveType();
+ static const HType STRING = const HStringType();
+ static const HType READABLE_ARRAY = const HReadableArrayType();
+ static const HType MUTABLE_ARRAY = const HMutableArrayType();
+ static const HType EXTENDABLE_ARRAY = const HExtendableArrayType();
+ static const HType NULL = const HNullType();
- static final HType BOOLEAN_OR_NULL = const HBooleanOrNullType();
- static final HType NUMBER_OR_NULL = const HNumberOrNullType();
- static final HType INTEGER_OR_NULL = const HIntegerOrNullType();
- static final HType DOUBLE_OR_NULL = const HDoubleOrNullType();
- static final HType STRING_OR_NULL = const HStringOrNullType();
+ static const HType BOOLEAN_OR_NULL = const HBooleanOrNullType();
+ static const HType NUMBER_OR_NULL = const HNumberOrNullType();
+ static const HType INTEGER_OR_NULL = const HIntegerOrNullType();
+ static const HType DOUBLE_OR_NULL = const HDoubleOrNullType();
+ static const HType STRING_OR_NULL = const HStringOrNullType();
bool isConflicting() => this === CONFLICTING;
bool isUnknown() => this === UNKNOWN;
« no previous file with comments | « lib/compiler/implementation/ssa/tracer.dart ('k') | lib/compiler/implementation/tree/nodes.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698