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

Unified Diff: sdk/lib/utf/utf.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 | « sdk/lib/core/string.dart ('k') | sdk/lib/utf/utf16.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/utf/utf.dart
diff --git a/sdk/lib/utf/utf.dart b/sdk/lib/utf/utf.dart
index 1c8c95cb180aa591fd7472c639f330e1823d6bdd..940ce681bbcbaad8325131e22669c8c672668071 100644
--- a/sdk/lib/utf/utf.dart
+++ b/sdk/lib/utf/utf.dart
@@ -4,6 +4,7 @@
library dart.utf;
import "dart:async";
+import "dart:collection";
part "utf_stream.dart";
part "utf8.dart";
part "utf16.dart";
@@ -197,7 +198,7 @@ class Utf16CodeUnitDecoder implements Iterator<int> {
*/
// TODO(floitsch): Consider removing the extend and switch to implements since
// that's cheaper to allocate.
-class _ListRange extends Iterable {
+class _ListRange extends IterableBase {
final List _source;
final int _offset;
final int _length;
« no previous file with comments | « sdk/lib/core/string.dart ('k') | sdk/lib/utf/utf16.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698