| 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 5bda2f3797b24aef47aa4dc301fb2b3601ea43a0..fcf1293e75fbb75af1f993bf3fae0adb6c4ed464 100644
|
| --- a/pkg/compiler/lib/src/dump_info.dart
|
| +++ b/pkg/compiler/lib/src/dump_info.dart
|
| @@ -262,7 +262,7 @@ class ElementInfoCollector extends BaseElementVisitor<Info, dynamic> {
|
| // TODO(sigmund): why all these checks?
|
| if (element.isInstanceMember &&
|
| !element.isAbstract &&
|
| - closedWorld.allFunctions.contains(element)) {
|
| + closedWorld.allFunctions.contains(element as MemberElement)) {
|
| returnType = '${element.type.returnType}';
|
| }
|
| String inferredReturnType = '${_resultOf(element).returnType}';
|
|
|