| Index: runtime/lib/byte_array.dart
|
| diff --git a/runtime/lib/byte_array.dart b/runtime/lib/byte_array.dart
|
| index cfdcf1bb7a52cfae472692c274c57f25b176ed83..211c3bd519274119c267a2815f2e0d9c2bcf8492 100644
|
| --- a/runtime/lib/byte_array.dart
|
| +++ b/runtime/lib/byte_array.dart
|
| @@ -1616,6 +1616,9 @@ class _ByteArrayView implements ByteArray {
|
| }
|
|
|
|
|
| +// TODO(floitsch): extending the collection adds extra cost (because of type
|
| +// parameters). Consider copying the functions from Collection into this class
|
| +// and just implementing Collection<int>.
|
| class _ByteArrayViewBase extends Collection<int> {
|
| num operator[](int index);
|
|
|
|
|