| Index: pkg/compiler/lib/src/universe/resolution_world_builder.dart
|
| diff --git a/pkg/compiler/lib/src/universe/resolution_world_builder.dart b/pkg/compiler/lib/src/universe/resolution_world_builder.dart
|
| index 2f2ba48da25ceb6d136b66e31dcd67b413bee1e6..44c865aefc763bc310a6090c3a81690a5046a4b7 100644
|
| --- a/pkg/compiler/lib/src/universe/resolution_world_builder.dart
|
| +++ b/pkg/compiler/lib/src/universe/resolution_world_builder.dart
|
| @@ -359,7 +359,7 @@ abstract class ResolutionWorldBuilderBase
|
| ClosedWorld _closedWorldCache;
|
| final Set<MemberEntity> _liveInstanceMembers = new Set<MemberEntity>();
|
|
|
| - final Set<TypedefElement> _allTypedefs = new Set<TypedefElement>();
|
| + final Set<TypedefEntity> _allTypedefs = new Set<TypedefEntity>();
|
|
|
| final Map<ClassEntity, Set<ClassEntity>> _mixinUses =
|
| new Map<ClassEntity, Set<ClassEntity>>();
|
| @@ -776,7 +776,7 @@ abstract class ResolutionWorldBuilderBase
|
| return uses != null ? uses : const <ClassEntity>[];
|
| }
|
|
|
| - void registerTypedef(TypedefElement typdef) {
|
| + void registerTypedef(TypedefEntity typdef) {
|
| _allTypedefs.add(typdef);
|
| }
|
|
|
|
|