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

Unified Diff: runtime/lib/byte_array.dart

Issue 11280049: Use coreSort in bytearrays.. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/byte_array.dart
diff --git a/runtime/lib/byte_array.dart b/runtime/lib/byte_array.dart
index 6d7b2e7798109a9fe383009dc4ddd4c373368c36..e33abfb18a8be247c13ecbdfb024ae256e74c143 100644
--- a/runtime/lib/byte_array.dart
+++ b/runtime/lib/byte_array.dart
@@ -184,7 +184,7 @@ abstract class _ByteArrayBase {
}
void sort([Comparator compare = Comparable.compare]) {
- _Sort.sort(this, compare);
+ coreSort(this, compare);
}
int indexOf(element, [int start = 0]) {
@@ -1666,7 +1666,7 @@ class _ByteArrayViewBase {
}
void sort([Comparator compare = Comparable.compare]) {
- _Sort.sort(this, compare);
+ coreSort(this, compare);
}
int indexOf(element, [int start = 0]) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698