| Index: pkg/compiler/lib/src/inferrer/type_graph_nodes.dart
|
| diff --git a/pkg/compiler/lib/src/inferrer/type_graph_nodes.dart b/pkg/compiler/lib/src/inferrer/type_graph_nodes.dart
|
| index a27ceb495e2d677a98c0543916c055327e427478..e549d68301d832f6d0335d6d503e8d48209a940d 100644
|
| --- a/pkg/compiler/lib/src/inferrer/type_graph_nodes.dart
|
| +++ b/pkg/compiler/lib/src/inferrer/type_graph_nodes.dart
|
| @@ -69,7 +69,7 @@ abstract class TypeInformation {
|
| final MemberTypeInformation context;
|
|
|
| /// The element this [TypeInformation] node belongs to.
|
| - MemberElement get contextMember => context == null ? null : context.element;
|
| + TypedElement get contextMember => context == null ? null : context.element;
|
|
|
| Iterable<TypeInformation> get assignments => _assignments;
|
|
|
|
|