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

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

Issue 289353002: Add SetBase/SetMixin. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated to not use cloneEmpty Created 6 years, 7 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
Index: sdk/lib/collection/collection.dart
diff --git a/sdk/lib/collection/collection.dart b/sdk/lib/collection/collection.dart
index 4620bc08616347a27e2c75dc216b8ef52895bd74..4e93785cf697c6c46bc39941074abba27f3d6263 100644
--- a/sdk/lib/collection/collection.dart
+++ b/sdk/lib/collection/collection.dart
@@ -11,14 +11,15 @@ import 'dart:_internal';
import 'dart:math' show Random; // Used by ListMixin.shuffle.
part 'collections.dart';
+part 'hash_map.dart';
+part 'hash_set.dart';
part 'iterable.dart';
part 'iterator.dart';
+part 'linked_hash_map.dart';
+part 'linked_hash_set.dart';
+part 'linked_list.dart';
+part 'list.dart';
part 'maps.dart';
part 'queue.dart';
+part 'set.dart';
part 'splay_tree.dart';
-part 'linked_list.dart';
-part 'hash_set.dart';
-part 'hash_map.dart';
-part 'list.dart';
-part 'linked_hash_set.dart';
-part 'linked_hash_map.dart';

Powered by Google App Engine
This is Rietveld 408576698