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

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

Issue 2549423002: Change Enqueuer to use Entity instead of Element. (Closed)
Patch Set: Cleanup Created 4 years 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
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 db6a13a8b0cc4b889d9991ea7e52478a1fe665ad..d44113721511b2b87657f592377ea4fa6de20774 100644
--- a/pkg/compiler/lib/src/dump_info.dart
+++ b/pkg/compiler/lib/src/dump_info.dart
@@ -431,8 +431,8 @@ class DumpInfoTask extends CompilerTask implements InfoReporter {
}
}
- void unregisterImpact(Element element) {
- impacts.remove(element);
+ void unregisterImpact(var impactSource) {
+ impacts.remove(impactSource);
}
/**

Powered by Google App Engine
This is Rietveld 408576698