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

Unified Diff: sdk/lib/collection/sort.dart

Issue 11960005: Move sort to collection-dev and remove coreSort. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Adapt for not moving IterableMixinWorkaround. Created 7 years, 11 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 | « sdk/lib/collection/collections.dart ('k') | sdk/lib/core/core.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/collection/sort.dart
diff --git a/sdk/lib/core/sort.dart b/sdk/lib/collection/sort.dart
similarity index 98%
rename from sdk/lib/core/sort.dart
rename to sdk/lib/collection/sort.dart
index 96d987a1cfb736720349bdeb0d51374b3cbde785..a5805cd107f79173526f7307af049d1773ca53c2 100644
--- a/sdk/lib/core/sort.dart
+++ b/sdk/lib/collection/sort.dart
@@ -2,13 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-part of dart.core;
-
-// TODO(ajohnsen): Remove once dart2js intercepters can work without it.
-/**
- * WARNING: This method is temporary and will go away soon.
- */
-void coreSort(List l, int compare(a, b)) => _Sort.sort(l, compare);
+part of dart.collection;
/**
* Dual-Pivot Quicksort algorithm.
« no previous file with comments | « sdk/lib/collection/collections.dart ('k') | sdk/lib/core/core.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698