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

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: Line length. 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
Index: runtime/lib/array.dart
diff --git a/runtime/lib/array.dart b/runtime/lib/array.dart
index 3764570d00a4d272601903b7d1f048d77dd64956..e4e8645587c5d47481169412d305d78baa0a7343 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) {

Powered by Google App Engine
This is Rietveld 408576698