Index: runtime/lib/byte_array.dart |
diff --git a/runtime/lib/byte_array.dart b/runtime/lib/byte_array.dart |
index c88ecd8c3dc19e297971a51e486e59b5bc545368..fff47bda1d14d552e004d5cbfe73f6334c16bfe5 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]) { |
- coreSort(this, compare); |
+ _Sort.sort(this, compare); |
} |
int indexOf(element, [int start = 0]) { |
@@ -1662,7 +1662,7 @@ class _ByteArrayViewBase { |
} |
void sort([Comparator compare = Comparable.compare]) { |
- coreSort(this, compare); |
+ _Sort.sort(this, compare); |
} |
int indexOf(element, [int start = 0]) { |