Index: pkg/compiler/lib/src/dump_info.dart |
diff --git a/pkg/compiler/lib/src/dump_info.dart b/pkg/compiler/lib/src/dump_info.dart |
index 6b039a918039382fdaa4fe1edfb897da4a52baed..a1e3d4355bbc3d9cba8e9f06df3e3dbadbb5a55a 100644 |
--- a/pkg/compiler/lib/src/dump_info.dart |
+++ b/pkg/compiler/lib/src/dump_info.dart |
@@ -554,7 +554,7 @@ class DumpInfoTask extends CompilerTask implements InfoReporter { |
AllInfo result = infoCollector.result; |
// Recursively build links to function uses |
- Iterable<Element> functionElements = |
+ Iterable<Entity> functionElements = |
infoCollector._elementToInfo.keys.where((k) => k is FunctionElement); |
for (FunctionElement element in functionElements) { |
FunctionInfo info = infoCollector._elementToInfo[element]; |
@@ -569,7 +569,7 @@ class DumpInfoTask extends CompilerTask implements InfoReporter { |
} |
// Recursively build links to field uses |
- Iterable<Element> fieldElements = |
+ Iterable<Entity> fieldElements = |
infoCollector._elementToInfo.keys.where((k) => k is FieldElement); |
for (FieldElement element in fieldElements) { |
FieldInfo info = infoCollector._elementToInfo[element]; |