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

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

Issue 292323006: Remove uses of IterableMixinWorkaround outside of VM and dart2js lists. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
« no previous file with comments | « no previous file | sdk/lib/collection/iterable.dart » ('j') | sdk/lib/collection/iterable.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/collection/hash_set.dart
diff --git a/sdk/lib/collection/hash_set.dart b/sdk/lib/collection/hash_set.dart
index 723d5167b44ea564afaac2adbe3c3d6fa57f1262..f3cd262e5feba3148c3f72629301ee89514d9c01 100644
--- a/sdk/lib/collection/hash_set.dart
+++ b/sdk/lib/collection/hash_set.dart
@@ -32,7 +32,7 @@ abstract class _HashSetBase<E> extends SetBase<E> {
// Subclasses can optimize this further.
Set<E> toSet() => _newSet()..addAll(this);
- String toString() => IterableMixinWorkaround.toStringIterable(this, '{', '}');
+ String toString() => _setToString(this);
}
/**
« no previous file with comments | « no previous file | sdk/lib/collection/iterable.dart » ('j') | sdk/lib/collection/iterable.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698