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

Unified Diff: tool/input_sdk/private/string_helper.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/internal/iterable.dart ('k') | tool/sdk_expected_errors.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tool/input_sdk/private/string_helper.dart
diff --git a/tool/input_sdk/private/string_helper.dart b/tool/input_sdk/private/string_helper.dart
index e97448a23af431a9d4f498823e0d5e951a3159f3..0d662f1658c6aaf5a4b3b5d9cccd8bcb116824ee 100644
--- a/tool/input_sdk/private/string_helper.dart
+++ b/tool/input_sdk/private/string_helper.dart
@@ -54,7 +54,7 @@ Iterable<Match> allMatchesInStringUnchecked(String pattern, String string,
return new _StringAllMatchesIterable(string, pattern, startIndex);
}
-class _StringAllMatchesIterable extends IterableBase<Match> {
+class _StringAllMatchesIterable extends Iterable<Match> {
final String _input;
final String _pattern;
final int _index;
« no previous file with comments | « tool/input_sdk/lib/internal/iterable.dart ('k') | tool/sdk_expected_errors.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698