| Index: sdk/lib/utf/utf8.dart
|
| diff --git a/sdk/lib/utf/utf8.dart b/sdk/lib/utf/utf8.dart
|
| index 48933af99f435572079a9a0a79e49397b5111d69..f9ef9fbe969f3a01beddc3534faf6dceedc1389b 100644
|
| --- a/sdk/lib/utf/utf8.dart
|
| +++ b/sdk/lib/utf/utf8.dart
|
| @@ -127,7 +127,7 @@ List<int> utf8ToCodepoints(
|
| * provides an iterator on demand and the iterator will only translate bytes
|
| * as requested by the user of the iterator. (Note: results are not cached.)
|
| */
|
| -class IterableUtf8Decoder implements Iterable<int> {
|
| +class IterableUtf8Decoder extends Iterable<int> {
|
| final List<int> bytes;
|
| final int offset;
|
| final int length;
|
|
|