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

Unified Diff: runtime/lib/array.dart

Issue 8431028: Implement async file API on top of isolates. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix type mismatch. Created 9 years, 2 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/file_impl.dart ('k') | tests/corelib/corelib.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/array.dart
diff --git a/runtime/lib/array.dart b/runtime/lib/array.dart
index f530f5a79ca7d0de9a211b7e3ffa0a5907796364..7ea24e00ce2e94b7644bec386b755f6bd41cd6e7 100644
--- a/runtime/lib/array.dart
+++ b/runtime/lib/array.dart
@@ -66,7 +66,7 @@ class ObjectArray<T> implements List<T> {
if (length < 0) {
throw new IllegalArgumentException("negative length $length");
}
- copyFrom(from, start, startFrom, count);
+ copyFrom(from, startFrom, start, length);
}
void removeRange(int start, int length) {
« no previous file with comments | « runtime/bin/file_impl.dart ('k') | tests/corelib/corelib.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698