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

Unified Diff: tool/input_sdk/lib/core/string.dart

Issue 1948113003: Upgrade Iterable and Iterator. (Closed) Base URL: https://github.com/dart-lang/dev_compiler@master
Patch Set: Created 4 years, 7 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 | « tool/input_sdk/lib/core/iterator.dart ('k') | tool/input_sdk/lib/internal/iterable.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tool/input_sdk/lib/core/string.dart
diff --git a/tool/input_sdk/lib/core/string.dart b/tool/input_sdk/lib/core/string.dart
index a36fbc5e496bd0b27fac27fe2e4ca6ab0f5835ae..39641df87e5439b414095eed8f9d017a9d4b0d71 100644
--- a/tool/input_sdk/lib/core/string.dart
+++ b/tool/input_sdk/lib/core/string.dart
@@ -602,7 +602,7 @@ abstract class String implements Comparable<String>, Pattern {
/**
* The runes (integer Unicode code points) of a [String].
*/
-class Runes extends IterableBase<int> {
+class Runes extends Iterable<int> {
final String string;
Runes(this.string);
« no previous file with comments | « tool/input_sdk/lib/core/iterator.dart ('k') | tool/input_sdk/lib/internal/iterable.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698