| Index: runtime/bin/file_patch.dart
|
| diff --git a/runtime/bin/file_patch.dart b/runtime/bin/file_patch.dart
|
| index 63cb9157e4019ad4c3f45b5fb1f4cc1233da4f9b..2355f9d28be99f6f91ffaf27af783e920fc01fc7 100644
|
| --- a/runtime/bin/file_patch.dart
|
| +++ b/runtime/bin/file_patch.dart
|
| @@ -34,3 +34,7 @@ patch class _RandomAccessFile {
|
| /* patch */ static _length(int id) native "File_Length";
|
| /* patch */ static _flush(int id) native "File_Flush";
|
| }
|
| +
|
| +List<int> _makeUint8ListView(List<int> source, int from, int to) {
|
| + return new Uint8List.view(source.asByteArray(), from, to);
|
| +}
|
|
|