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

Unified Diff: sdk/lib/collection/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
Index: sdk/lib/collection/set.dart
diff --git a/sdk/lib/collection/set.dart b/sdk/lib/collection/set.dart
index b98eb64b8e97a31db3064741870182b12f9fc958..a5febecc9d032837e5d94c41874d04fab8ac4468 100644
--- a/sdk/lib/collection/set.dart
+++ b/sdk/lib/collection/set.dart
@@ -131,7 +131,7 @@ abstract class SetMixin<E> implements Set<E> {
return result;
}
- String toString() => IterableMixinWorkaround.toStringIterable(this, '{', '}');
+ String toString() => _setToString(this);
// Copied from IterableMixin.
// Should be inherited if we had multi-level mixins.

Powered by Google App Engine
This is Rietveld 408576698