| 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';
|
|
|