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

Unified Diff: sdk/lib/_internal/compiler/implementation/lib/constant_map.dart

Issue 14022007: Move Iterable implementation to collection. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Merge to head. Created 7 years, 8 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
Index: sdk/lib/_internal/compiler/implementation/lib/constant_map.dart
diff --git a/sdk/lib/_internal/compiler/implementation/lib/constant_map.dart b/sdk/lib/_internal/compiler/implementation/lib/constant_map.dart
index 75446c7b91e83c20ae4d733d69f0966924346cdb..d84b4a574435c1d6270a9d2adf547e1c87d7928f 100644
--- a/sdk/lib/_internal/compiler/implementation/lib/constant_map.dart
+++ b/sdk/lib/_internal/compiler/implementation/lib/constant_map.dart
@@ -67,7 +67,7 @@ class ConstantProtoMap<V> extends ConstantMap<V> {
}
}
-class _ConstantMapKeyIterable extends Iterable<String> {
+class _ConstantMapKeyIterable extends IterableBase<String> {
ConstantMap _map;
_ConstantMapKeyIterable(this._map);

Powered by Google App Engine
This is Rietveld 408576698