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

Unified Diff: runtime/lib/typed_data.dart

Issue 297053002: Reinstall previous behavior for Set and Queue toString. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Retain a typo fix. 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: runtime/lib/typed_data.dart
diff --git a/runtime/lib/typed_data.dart b/runtime/lib/typed_data.dart
index 393d398c41800c873af00663639ca03349ea7dfa..b1845732b7df58203cae4084736826644c89f0e1 100644
--- a/runtime/lib/typed_data.dart
+++ b/runtime/lib/typed_data.dart
@@ -589,9 +589,7 @@ abstract class _TypedListBase {
// Method(s) implementing Object interface.
- String toString() {
- return IterableMixinWorkaround.toStringIterable(this, '[', ']');
- }
+ String toString() => ListBase.listToString(this);
// Internal utility methods.

Powered by Google App Engine
This is Rietveld 408576698