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

Unified Diff: pkg/compiler/lib/src/js_backend/type_variable_handler.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/type_variable_handler.dart
diff --git a/pkg/compiler/lib/src/js_backend/type_variable_handler.dart b/pkg/compiler/lib/src/js_backend/type_variable_handler.dart
index 92c8c2163069d05651dba394b4ad506de6505ac4..b25bfc53639085ae63ac2b8b87ccbeaa70d1fb6c 100644
--- a/pkg/compiler/lib/src/js_backend/type_variable_handler.dart
+++ b/pkg/compiler/lib/src/js_backend/type_variable_handler.dart
@@ -22,7 +22,7 @@ import 'mirrors_data.dart';
/// Resolution analysis that prepares for the construction of TypeVariable
/// constants needed at runtime.
-class TypeVariableAnalysis {
+class TypeVariableResolutionAnalysis {
final ElementEnvironment _elementEnvironment;
final BackendImpacts _impacts;
final BackendUsageBuilder _backendUsageBuilder;
@@ -35,7 +35,7 @@ class TypeVariableAnalysis {
/// Impact builder used for the resolution world computation.
final StagedWorldImpactBuilder impactBuilder = new StagedWorldImpactBuilder();
- TypeVariableAnalysis(
+ TypeVariableResolutionAnalysis(
this._elementEnvironment, this._impacts, this._backendUsageBuilder);
/// Compute the [WorldImpact] for the type variables registered since last
@@ -57,7 +57,7 @@ class TypeVariableAnalysis {
}
/// Codegen handler that creates TypeVariable constants needed at runtime.
-class TypeVariableHandler {
+class TypeVariableCodegenAnalysis {
final JavaScriptBackend _backend;
final BackendHelpers _helpers;
final MirrorsData _mirrorsData;
@@ -80,7 +80,7 @@ class TypeVariableHandler {
final StagedWorldImpactBuilder _impactBuilder =
new StagedWorldImpactBuilder();
- TypeVariableHandler(this._backend, this._helpers, this._mirrorsData);
+ TypeVariableCodegenAnalysis(this._backend, this._helpers, this._mirrorsData);
CodeEmitterTask get _task => _backend.emitter;
MetadataCollector get _metadataCollector => _task.metadataCollector;

Powered by Google App Engine
This is Rietveld 408576698