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

Unified Diff: sdk/lib/_internal/compiler/implementation/scanner/byte_strings.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/byte_strings.dart
diff --git a/sdk/lib/_internal/compiler/implementation/scanner/byte_strings.dart b/sdk/lib/_internal/compiler/implementation/scanner/byte_strings.dart
index 92fcdc5e16c7b7aad9f265738a270be7d88d653e..4ae62edec307f5b1bc38fb82442a4b11921cf83e 100644
--- a/sdk/lib/_internal/compiler/implementation/scanner/byte_strings.dart
+++ b/sdk/lib/_internal/compiler/implementation/scanner/byte_strings.dart
@@ -5,7 +5,7 @@
/**
* An abstract string representation.
*/
-abstract class ByteString extends Iterable<int> implements SourceString {
+abstract class ByteString extends IterableBase<int> implements SourceString {
final List<int> bytes;
final int offset;
final int length;

Powered by Google App Engine
This is Rietveld 408576698