Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(976)

Unified Diff: pkg/compiler/lib/src/universe/resolution_world_builder.dart

Issue 2981633002: Introduce TypedefEntity (Closed)
Patch Set: Updated cf. comments Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/compiler/lib/src/resolution/resolution_strategy.dart ('k') | pkg/compiler/lib/src/world.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « pkg/compiler/lib/src/resolution/resolution_strategy.dart ('k') | pkg/compiler/lib/src/world.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698