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

Unified Diff: runtime/lib/byte_array.dart

Issue 11365196: Move JSSyntaxRegExp to core as a private member. This removes the last refrences to dart:coreimpl. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix two pending TODO's. 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
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]) {

Powered by Google App Engine
This is Rietveld 408576698