Chromium Code Reviews| Index: sdk/lib/collection/collections.dart |
| diff --git a/sdk/lib/collection/collections.dart b/sdk/lib/collection/collections.dart |
| index 8729452b7b2cf3b830c0a386a27f23d91529f7f0..616ba6520af14790a2207bcf8f891d766c8fa427 100644 |
| --- a/sdk/lib/collection/collections.dart |
| +++ b/sdk/lib/collection/collections.dart |
| @@ -9,6 +9,7 @@ part of dart.collection; |
| * |
| * Once Dart receives Mixins it will be replaced with mixin classes. |
| */ |
| +@deprecated |
| class IterableMixinWorkaround { |
| static bool contains(Iterable iterable, var element) { |
| for (final e in iterable) { |
| @@ -342,7 +343,7 @@ class IterableMixinWorkaround { |
| } |
| static Iterable reversedList(List list) { |
| - return new ReversedListIterable(list); |
| + return new _ReversedListIterable(list); |
|
floitsch
2013/04/09 11:56:07
Move it back.
|
| } |
| static void sortList(List list, int compare(a, b)) { |