| Index: sdk/lib/utf/utf8.dart
|
| diff --git a/sdk/lib/utf/utf8.dart b/sdk/lib/utf/utf8.dart
|
| index 27cab324e31ff40d4b735aed473d112d7cbedd0e..11ce700974904f2007169f031825002cc8b152f6 100644
|
| --- a/sdk/lib/utf/utf8.dart
|
| +++ b/sdk/lib/utf/utf8.dart
|
| @@ -127,6 +127,8 @@ 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.)
|
| */
|
| +// TODO(floitsch): Consider removing the extend and switch to implements since
|
| +// that's cheaper to allocate.
|
| class IterableUtf8Decoder extends Iterable<int> {
|
| final List<int> bytes;
|
| final int offset;
|
|
|