| Index: sdk/lib/utf/utf32.dart
|
| diff --git a/sdk/lib/utf/utf32.dart b/sdk/lib/utf/utf32.dart
|
| index 9cbfd7aa982e14aabd5262ad3c3c6ac2257b1236..5180f2d17234efacfa2949669d5a80fdcd5e4c83 100644
|
| --- a/sdk/lib/utf/utf32.dart
|
| +++ b/sdk/lib/utf/utf32.dart
|
| @@ -180,7 +180,7 @@ typedef Utf32BytesDecoder Utf32BytesDecoderProvider();
|
| * 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 IterableUtf32Decoder implements Iterable<int> {
|
| +class IterableUtf32Decoder extends Iterable<int> {
|
| final Utf32BytesDecoderProvider codeunitsProvider;
|
|
|
| IterableUtf32Decoder._(this.codeunitsProvider);
|
|
|