Index: runtime/lib/array.dart |
diff --git a/runtime/lib/array.dart b/runtime/lib/array.dart |
index aa1168f3c998bd9578a0fc619206f7d428825183..ec0cc8214c1359a6433cf3ffe0326d7feb4a3f9a 100644 |
--- a/runtime/lib/array.dart |
+++ b/runtime/lib/array.dart |
@@ -93,7 +93,7 @@ class _ObjectArray<E> implements List<E> { |
} |
void sort([Comparator<E> compare = Comparable.compare]) { |
- coreSort(this, compare); |
+ _Sort.sort(this, compare); |
} |
int indexOf(E element, [int start = 0]) { |