| Index: sdk/lib/_internal/compiler/implementation/lib/isolate_patch.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/lib/isolate_patch.dart b/sdk/lib/_internal/compiler/implementation/lib/isolate_patch.dart
|
| index 53f8b94341b41287b53018c7d2875048923d514f..87c91c49451e3f70ccec8b5b49698dc4097b58eb 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/lib/isolate_patch.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/lib/isolate_patch.dart
|
| @@ -1150,8 +1150,8 @@ class _Serializer extends _MessageTraverser {
|
|
|
| int id = _nextFreeRefId++;
|
| _visited[map] = id;
|
| - var keys = _serializeList(map.keys);
|
| - var values = _serializeList(map.values);
|
| + var keys = _serializeList(map.keys.toList());
|
| + var values = _serializeList(map.values.toList());
|
| // TODO(floitsch): we are losing the generic type.
|
| return ['map', id, keys, values];
|
| }
|
|
|