| Index: sdk/lib/utf/utf8.dart
|
| diff --git a/sdk/lib/utf/utf8.dart b/sdk/lib/utf/utf8.dart
|
| index 893cf0fe39b7a7e4fe1695b90cf7791241a1fb0b..19222707902e6ea33feb28cee5ef1a8be40c584d 100644
|
| --- a/sdk/lib/utf/utf8.dart
|
| +++ b/sdk/lib/utf/utf8.dart
|
| @@ -131,7 +131,7 @@ List<int> utf8ToCodepoints(
|
| */
|
| // TODO(floitsch): Consider removing the extend and switch to implements since
|
| // that's cheaper to allocate.
|
| -class IterableUtf8Decoder extends Iterable<int> {
|
| +class IterableUtf8Decoder extends IterableBase<int> {
|
| final List<int> bytes;
|
| final int offset;
|
| final int length;
|
|
|