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

Unified Diff: sdk/lib/_internal/compiler/implementation/lib/io_patch.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: merge 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
« no previous file with comments | « runtime/bin/socket_patch.dart ('k') | sdk/lib/_internal/compiler/implementation/source_file_provider.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
diff --git a/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart b/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
index 2702d9db4eae1ae0e9588986c8ed3b0e7ac4d8d1..b6448f8a60058a2399cecea3650493fac2bb5300 100644
--- a/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
+++ b/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
@@ -111,14 +111,14 @@ patch class _RandomAccessFile {
patch static _read(int id, int bytes) {
throw new UnsupportedError("RandomAccessFile._read");
}
- patch static _readList(int id, List<int> buffer, int offset, int bytes) {
- throw new UnsupportedError("RandomAccessFile._readList");
+ patch static _readInto(int id, List<int> buffer, [int start, int end]) {
+ throw new UnsupportedError("RandomAccessFile._readInto");
}
patch static _writeByte(int id, int value) {
throw new UnsupportedError("RandomAccessFile._writeByte");
}
- patch static _writeList(int id, List<int> buffer, int offset, int bytes) {
- throw new UnsupportedError("RandomAccessFile._writeList");
+ patch static _writeFrom(int id, List<int> buffer, [int start, int end]) {
+ throw new UnsupportedError("RandomAccessFile._writeFrom");
}
patch static _position(int id) {
throw new UnsupportedError("RandomAccessFile._position");
« no previous file with comments | « runtime/bin/socket_patch.dart ('k') | sdk/lib/_internal/compiler/implementation/source_file_provider.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698