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

Unified Diff: pkg/compiler/lib/src/js_backend/mirrors_analysis.dart

Issue 2814973003: Extract ClosedWorldRefiner implementation from ClosedWorldImpl to ClosedWorldBase (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
Index: pkg/compiler/lib/src/js_backend/mirrors_analysis.dart
diff --git a/pkg/compiler/lib/src/js_backend/mirrors_analysis.dart b/pkg/compiler/lib/src/js_backend/mirrors_analysis.dart
index 04efb7897b14321cffef169f54bd14ddae7d8f2f..69771b059977647024c383d1db4482536942efaa 100644
--- a/pkg/compiler/lib/src/js_backend/mirrors_analysis.dart
+++ b/pkg/compiler/lib/src/js_backend/mirrors_analysis.dart
@@ -191,7 +191,7 @@ class MirrorsResolutionAnalysisImpl implements MirrorsResolutionAnalysis {
}
}
- entities.forEach(processElementMetadata);
+ entities.forEach((MemberElement member) => processElementMetadata(member));
}
void onResolutionComplete() {

Powered by Google App Engine
This is Rietveld 408576698