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

Unified Diff: sdk/lib/_internal/compiler/implementation/scanner/string_scanner.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
Index: sdk/lib/_internal/compiler/implementation/scanner/string_scanner.dart
diff --git a/sdk/lib/_internal/compiler/implementation/scanner/string_scanner.dart b/sdk/lib/_internal/compiler/implementation/scanner/string_scanner.dart
index 5d1a42aee57b0e49911f84a445f44d4d8fc8a88b..e898f412e7c899be792e7af84ebda057f537411e 100644
--- a/sdk/lib/_internal/compiler/implementation/scanner/string_scanner.dart
+++ b/sdk/lib/_internal/compiler/implementation/scanner/string_scanner.dart
@@ -53,7 +53,7 @@ class StringScanner extends ArrayBasedScanner<SourceString> {
}
}
-class SubstringWrapper extends Iterable<int> implements SourceString {
+class SubstringWrapper extends IterableBase<int> implements SourceString {
final String internalString;
final int begin;
final int end;

Powered by Google App Engine
This is Rietveld 408576698