| Index: lib/compiler/implementation/tools/mini_parser.dart
|
| diff --git a/lib/compiler/implementation/tools/mini_parser.dart b/lib/compiler/implementation/tools/mini_parser.dart
|
| index 6d518fb1308a5dbf5243b725411c93fd55e2b122..62a4ea88bf0f9e011bf788395a0cee2b08fb331b 100644
|
| --- a/lib/compiler/implementation/tools/mini_parser.dart
|
| +++ b/lib/compiler/implementation/tools/mini_parser.dart
|
| @@ -167,7 +167,7 @@ List<int> read(String filename) {
|
| bool threw = true;
|
| try {
|
| int size = file.lengthSync();
|
| - List<int> bytes = new ByteArray(size + 1);
|
| + List<int> bytes = new Uint8List(size + 1);
|
| file.readListSync(bytes, 0, size);
|
| bytes[size] = $EOF;
|
| threw = false;
|
|
|