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

Unified Diff: runtime/lib/immutable_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
« no previous file with comments | « runtime/lib/collection_patch.dart ('k') | samples/swarm/DataSource.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/immutable_map.dart
diff --git a/runtime/lib/immutable_map.dart b/runtime/lib/immutable_map.dart
index 82f54580e4490a66e346b3f206475b8a93fdb8c8..3ca9ed53d861e96c2187e2612a9ad4a89c25f5ec 100644
--- a/runtime/lib/immutable_map.dart
+++ b/runtime/lib/immutable_map.dart
@@ -82,7 +82,7 @@ class ImmutableMap<K, V> implements Map<K, V> {
}
}
-class _ImmutableMapKeyIterable<E> extends Iterable<E> {
+class _ImmutableMapKeyIterable<E> extends IterableBase<E> {
final ImmutableMap _map;
_ImmutableMapKeyIterable(this._map);
@@ -91,7 +91,7 @@ class _ImmutableMapKeyIterable<E> extends Iterable<E> {
}
}
-class _ImmutableMapValueIterable<E> extends Iterable<E> {
+class _ImmutableMapValueIterable<E> extends IterableBase<E> {
final ImmutableMap _map;
_ImmutableMapValueIterable(this._map);
« no previous file with comments | « runtime/lib/collection_patch.dart ('k') | samples/swarm/DataSource.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698