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

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

Issue 2751983002: Pending renames and cleanups after commits (Closed)
Patch Set: Created 3 years, 9 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/lookup_map_analysis.dart
diff --git a/pkg/compiler/lib/src/js_backend/lookup_map_analysis.dart b/pkg/compiler/lib/src/js_backend/lookup_map_analysis.dart
index 9a91eeb03288942ea638ccd89e361ff0e103c2b6..e25ebd0047c6f9fde940f898d25a94a78f9953b4 100644
--- a/pkg/compiler/lib/src/js_backend/lookup_map_analysis.dart
+++ b/pkg/compiler/lib/src/js_backend/lookup_map_analysis.dart
@@ -37,7 +37,7 @@ import 'backend_helpers.dart';
/// In [LookupMapAnalysis] the value of `_version` is checked to ensure that it
/// is valid to perform the optimization of `LookupMap`. The actual optimization
/// is performed by [LookupMapAnalysis].
-class LookupMapLibraryAccess {
+class LookupMapResolutionAnalysis {
static final Uri PACKAGE_LOOKUP_MAP =
new Uri(scheme: 'package', path: 'lookup_map/lookup_map.dart');
@@ -57,7 +57,7 @@ class LookupMapLibraryAccess {
final StagedWorldImpactBuilder _impactBuilder =
new StagedWorldImpactBuilder();
- LookupMapLibraryAccess(this._reporter, this._elementEnvironment);
+ LookupMapResolutionAnalysis(this._reporter, this._elementEnvironment);
/// Compute the [WorldImpact] for the constants registered since last flush.
WorldImpact flush() {
@@ -131,7 +131,7 @@ class LookupMapAnalysis {
CommonElements commonElements,
BackendHelpers helpers,
BackendClasses backendClasses,
- LookupMapLibraryAccess analysis) {
+ LookupMapResolutionAnalysis analysis) {
/// Checks if the version of lookup_map is valid, and if so, enable this
/// analysis during codegen.
FieldElement lookupMapVersionVariable = analysis.lookupMapVersionVariable;

Powered by Google App Engine
This is Rietveld 408576698