Chromium Code Reviews| Index: runtime/lib/typed_data.dart |
| diff --git a/runtime/lib/typed_data.dart b/runtime/lib/typed_data.dart |
| index 04f6fa9b1229889a77989c35b0e30d7336d67f60..9c1da2fba735b49792d2934ba966af550d0aa8c5 100644 |
| --- a/runtime/lib/typed_data.dart |
| +++ b/runtime/lib/typed_data.dart |
| @@ -279,6 +279,7 @@ patch class ByteData { |
| // the collection and list interfaces. |
| abstract class _TypedListBase { |
| + |
| // Method(s) implementing the Collection interface. |
| bool contains(element) => IterableMixinWorkaround.contains(this, element); |
| @@ -504,10 +505,7 @@ abstract class _TypedListBase { |
| // Method(s) implementing Object interface. |
| - String toString() { |
| - return ToString.iterableToString(this); |
| - } |
| - |
| + String toString() => IterableMixinWorkaround.toStringList(this); |
|
floitsch
2013/07/08 16:12:34
VM devs prefer not to use "=>".
zarah
2013/07/08 16:57:46
Done.
|
| // Internal utility methods. |