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

Unified Diff: sdk/lib/core/string.dart

Issue 14022007: Move Iterable implementation to collection. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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/core/string.dart
diff --git a/sdk/lib/core/string.dart b/sdk/lib/core/string.dart
index 34aafd182ae9747e3a64f7b2fc653000761b4ba0..6e16db8017aafaa2d41f4b86cdfc5cada3c0a2e5 100644
--- a/sdk/lib/core/string.dart
+++ b/sdk/lib/core/string.dart
@@ -273,7 +273,7 @@ abstract class String implements Comparable<String>, Pattern {
/**
* The runes (integer Unicode code points) of a [String].
*/
-class Runes extends Iterable<int> {
+class Runes extends IterableBase<int> {
final String string;
Runes(this.string);

Powered by Google App Engine
This is Rietveld 408576698