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

Unified Diff: pkg/compiler/lib/src/world.dart

Issue 2804233002: Use Set<ClassEntity> instead of Set<MixinApplicationElement> (Closed)
Patch Set: Created 3 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/world.dart
diff --git a/pkg/compiler/lib/src/world.dart b/pkg/compiler/lib/src/world.dart
index 0a0a2f3a491fa6f5d4f866848e9f212768725505..47fe973ad1106d22785484477ce53b616e8df975 100644
--- a/pkg/compiler/lib/src/world.dart
+++ b/pkg/compiler/lib/src/world.dart
@@ -841,7 +841,7 @@ class ClosedWorldImpl implements ClosedWorld, ClosedWorldRefiner {
if (isInstantiated(mixinApplication)) {
uses.add(mixinApplication);
} else if (mixinApplication.isNamedMixinApplication) {
- Set<MixinApplicationElement> next = _mixinUses[mixinApplication];
+ Set<ClassEntity> next = _mixinUses[mixinApplication];
if (next != null) {
next.forEach(addLiveUse);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698