| 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 769803983e130b2e0d644b77548771bd281aa277..6cf48bd84e42b6263dbbea334e90c2fd02550217 100644
|
| --- a/pkg/compiler/lib/src/dump_info.dart
|
| +++ b/pkg/compiler/lib/src/dump_info.dart
|
| @@ -415,7 +415,7 @@ class DumpInfoTask extends CompilerTask implements InfoReporter {
|
| // inlined inside of it.
|
| final Map<Element, List<Element>> inlineMap = <Element, List<Element>>{};
|
|
|
| - final Map<Element, WorldImpact> impacts = <Element, WorldImpact>{};
|
| + final Map<MemberEntity, WorldImpact> impacts = <MemberEntity, WorldImpact>{};
|
|
|
| /// Register the size of the generated output.
|
| void reportSize(int programSize) {
|
| @@ -432,7 +432,7 @@ class DumpInfoTask extends CompilerTask implements InfoReporter {
|
| inlineMap[inlinedFrom].add(element);
|
| }
|
|
|
| - void registerImpact(Element element, WorldImpact impact) {
|
| + void registerImpact(MemberEntity element, WorldImpact impact) {
|
| if (compiler.options.dumpInfo) {
|
| impacts[element] = impact;
|
| }
|
|
|