Chromium Code Reviews| Index: runtime/lib/immutable_map.dart |
| diff --git a/runtime/lib/immutable_map.dart b/runtime/lib/immutable_map.dart |
| index 1b762732981b0a42942f378e31a018e561a0f93b..eefe10509446a46f7069607428a94abf8327d6e3 100644 |
| --- a/runtime/lib/immutable_map.dart |
| +++ b/runtime/lib/immutable_map.dart |
| @@ -88,7 +88,8 @@ class ImmutableMap<K, V> implements Map<K, V> { |
| } |
| String toString() { |
| - return Maps.mapToString(this); |
| + // TODO(srdjan): Extend text representation. |
| + return "ImmutableMap"; |
| } |
| } |