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

Unified Diff: lib/compiler/implementation/js_backend/backend.dart

Issue 10908090: Fix warnings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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/js/nodes.dart ('k') | lib/compiler/implementation/js_backend/emitter.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/compiler/implementation/js_backend/backend.dart
diff --git a/lib/compiler/implementation/js_backend/backend.dart b/lib/compiler/implementation/js_backend/backend.dart
index c96cd0eba00473d7d7754bf000249b85ac1b3e01..80bab6e812bf3c1528f468e1c2d129e8231e8d64 100644
--- a/lib/compiler/implementation/js_backend/backend.dart
+++ b/lib/compiler/implementation/js_backend/backend.dart
@@ -39,7 +39,7 @@ class HTypeList {
final List<HType> types;
HTypeList(int length) : types = new List<HType>(length);
- const HTypeList.allUnknown() : types = null;
+ const HTypeList.withAllUnknown() : types = null;
factory HTypeList.fromInvocation(HInvoke node, HTypeMap types) {
bool allUnknown = true;
@@ -58,7 +58,7 @@ class HTypeList {
return result;
}
- static const HTypeList ALL_UNKNOWN = const HTypeList.allUnknown();
+ static const HTypeList ALL_UNKNOWN = const HTypeList.withAllUnknown();
bool get allUnknown => types === null;
int get length => types.length;
« no previous file with comments | « lib/compiler/implementation/js/nodes.dart ('k') | lib/compiler/implementation/js_backend/emitter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698