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

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

Issue 2978613002: Convert data objects eagerly from K to J (Closed)
Patch Set: Created 3 years, 5 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 | « pkg/compiler/lib/src/js_backend/native_data.dart ('k') | pkg/compiler/lib/src/js_model/elements.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/js_backend/runtime_types.dart
diff --git a/pkg/compiler/lib/src/js_backend/runtime_types.dart b/pkg/compiler/lib/src/js_backend/runtime_types.dart
index f6850c42313378faabec8095bbf2474981cb1696..00662f844f2be2df62f9e49bea7badfece544924 100644
--- a/pkg/compiler/lib/src/js_backend/runtime_types.dart
+++ b/pkg/compiler/lib/src/js_backend/runtime_types.dart
@@ -216,7 +216,7 @@ abstract class _RuntimeTypesBase {
}
}
-class _RuntimeTypesNeed implements RuntimeTypesNeed {
+class RuntimeTypesNeedImpl implements RuntimeTypesNeed {
final ElementEnvironment _elementEnvironment;
final BackendUsage _backendUsage;
final Set<ClassEntity> classesNeedingRti;
@@ -227,7 +227,7 @@ class _RuntimeTypesNeed implements RuntimeTypesNeed {
/// to get the runtime type.
final Set<ClassEntity> classesUsingTypeVariableExpression;
- _RuntimeTypesNeed(
+ RuntimeTypesNeedImpl(
this._elementEnvironment,
this._backendUsage,
this.classesNeedingRti,
@@ -266,7 +266,7 @@ class _RuntimeTypesNeed implements RuntimeTypesNeed {
}
}
-class _ResolutionRuntimeTypesNeed extends _RuntimeTypesNeed {
+class _ResolutionRuntimeTypesNeed extends RuntimeTypesNeedImpl {
_ResolutionRuntimeTypesNeed(
ElementEnvironment elementEnvironment,
BackendUsage backendUsage,
@@ -447,7 +447,7 @@ class RuntimeTypesNeedBuilderImpl extends _RuntimeTypesBase
Set<FunctionEntity> methodsNeedingRti,
Set<Local> localFunctionsNeedingRti,
Set<ClassEntity> classesUsingTypeVariableExpression) {
- return new _RuntimeTypesNeed(
+ return new RuntimeTypesNeedImpl(
_elementEnvironment,
backendUsage,
classesNeedingRti,
« no previous file with comments | « pkg/compiler/lib/src/js_backend/native_data.dart ('k') | pkg/compiler/lib/src/js_model/elements.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698