Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1220)

Unified Diff: sdk/lib/_internal/compiler/implementation/tools/mini_parser.dart

Issue 14018007: Rename RandomAccessFile.readList and RandomAccessFile.writeList to RandomAccessFile.readInto and Ra… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix return type. Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: sdk/lib/_internal/compiler/implementation/tools/mini_parser.dart
diff --git a/sdk/lib/_internal/compiler/implementation/tools/mini_parser.dart b/sdk/lib/_internal/compiler/implementation/tools/mini_parser.dart
index 3b1b210c6f228b30131f0b933446c502364028b8..e56f82fa768c89a6f072a91afeeadf26af2f04fd 100644
--- a/sdk/lib/_internal/compiler/implementation/tools/mini_parser.dart
+++ b/sdk/lib/_internal/compiler/implementation/tools/mini_parser.dart
@@ -164,7 +164,7 @@ List<int> read(String filename) {
try {
int size = file.lengthSync();
List<int> bytes = new Uint8List(size + 1);
- file.readListSync(bytes, 0, size);
+ file.readIntoSync(bytes, 0, size);
bytes[size] = $EOF;
threw = false;
return bytes;

Powered by Google App Engine
This is Rietveld 408576698