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

Unified Diff: runtime/lib/growable_array.dart

Issue 11239004: Move DualPivotQuicksort from coreimpl to core as _Sort. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add note Created 8 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/lib/byte_array.dart ('k') | tests/corelib/sort_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/growable_array.dart
diff --git a/runtime/lib/growable_array.dart b/runtime/lib/growable_array.dart
index ad4765b65ce1f5a8722d84a250fb6ccdd58e47b7..a2e2fb3c6c792430b1deccfbc5e6743df3b2b6ab 100644
--- a/runtime/lib/growable_array.dart
+++ b/runtime/lib/growable_array.dart
@@ -208,7 +208,7 @@ class _GrowableObjectArray<T> implements List<T> {
}
void sort([Comparator<T> compare = Comparable.compare]) {
- DualPivotQuicksort.sort(this, compare);
+ coreSort(this, compare);
}
String toString() {
« no previous file with comments | « runtime/lib/byte_array.dart ('k') | tests/corelib/sort_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698