Index: pkg/compiler/lib/src/serialization/impact_serialization.dart |
diff --git a/pkg/compiler/lib/src/serialization/impact_serialization.dart b/pkg/compiler/lib/src/serialization/impact_serialization.dart |
index d5d255ba29db180b13ccb723073fe3866b4b46c6..979ec15d7e443c4ca0cdcc6264dc832591e39e27 100644 |
--- a/pkg/compiler/lib/src/serialization/impact_serialization.dart |
+++ b/pkg/compiler/lib/src/serialization/impact_serialization.dart |
@@ -189,9 +189,9 @@ class ImpactDeserializer { |
} |
ListDecoder mapLiteralDecoder = |
- objectDecoder.getList(Key.LISTS, isOptional: true); |
+ objectDecoder.getList(Key.MAPS, isOptional: true); |
List<MapLiteralUse> mapLiterals = const <MapLiteralUse>[]; |
- if (listLiteralDecoder != null) { |
+ if (mapLiteralDecoder != null) { |
mapLiterals = <MapLiteralUse>[]; |
for (int i = 0; i < mapLiteralDecoder.length; i++) { |
ObjectDecoder useDecoder = mapLiteralDecoder.getObject(i); |