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

Unified Diff: pkg/compiler/lib/src/js_emitter/runtime_type_generator.dart

Issue 2938853004: Rename ClosureClassMaps to ClosureDataLookup (Closed)
Patch Set: . Created 3 years, 6 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_emitter/runtime_type_generator.dart
diff --git a/pkg/compiler/lib/src/js_emitter/runtime_type_generator.dart b/pkg/compiler/lib/src/js_emitter/runtime_type_generator.dart
index a232fc5aceda3e0e6f236c0d6a8068fba08a983e..5131953a354a206a478b8a6a6bd8c3520ffe4c26 100644
--- a/pkg/compiler/lib/src/js_emitter/runtime_type_generator.dart
+++ b/pkg/compiler/lib/src/js_emitter/runtime_type_generator.dart
@@ -57,7 +57,7 @@ class TypeTestProperties {
class RuntimeTypeGenerator {
final CommonElements _commonElements;
- final ClosureTask _closureToClassMapper;
+ final ClosureTask _closureDataLookup;
final CodeEmitterTask emitterTask;
final Namer _namer;
final NativeData _nativeData;
@@ -69,7 +69,7 @@ class RuntimeTypeGenerator {
RuntimeTypeGenerator(
this._commonElements,
- this._closureToClassMapper,
+ this._closureDataLookup,
this.emitterTask,
this._namer,
this._nativeData,
@@ -126,7 +126,7 @@ class RuntimeTypeGenerator {
jsAst.Expression thisAccess = new jsAst.This();
if (!method.isAbstract) {
ClosureRepresentationInfo closureData =
- _closureToClassMapper.getClosureRepresentationInfo(method);
+ _closureDataLookup.getClosureRepresentationInfo(method);
if (closureData != null) {
ClosureFieldElement thisLocal = closureData.thisFieldEntity;
if (thisLocal != null) {
« no previous file with comments | « pkg/compiler/lib/src/js_emitter/program_builder/program_builder.dart ('k') | pkg/compiler/lib/src/kernel/element_map.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698