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

Unified Diff: lib/collection/collections.dart

Issue 11274043: Move Arrays, Collections and Maps into a new library, dart:collections. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove uncommented code. Created 8 years, 2 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 | « lib/collection/collection_sources.gypi ('k') | lib/collection/maps.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/collection/collections.dart
diff --git a/lib/coreimpl/collections.dart b/lib/collection/collections.dart
similarity index 97%
rename from lib/coreimpl/collections.dart
rename to lib/collection/collections.dart
index 873e9cdf121d104766d21507006308b07f769d11..2bee21c1b59ae06ec681f609edc82b9aeb1d2fee 100644
--- a/lib/coreimpl/collections.dart
+++ b/lib/collection/collections.dart
@@ -100,7 +100,9 @@ class Collections {
* it allows this method and [_emitMap] to identify recursive collections
* and maps.
*/
- static void _emitCollection(Collection c, StringBuffer result, List visiting) {
+ static void _emitCollection(Collection c,
+ StringBuffer result,
+ List visiting) {
visiting.add(c);
bool isList = c is List;
result.add(isList ? '[' : '{');
« no previous file with comments | « lib/collection/collection_sources.gypi ('k') | lib/collection/maps.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698