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

Unified Diff: pkg/compiler/lib/src/inferrer/builder_kernel.dart

Issue 3002953002: Split getClosureRepresentationInfo into MemberEntity and (ir/ast) nodes (Closed)
Patch Set: Created 3 years, 4 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/inferrer/builder_kernel.dart
diff --git a/pkg/compiler/lib/src/inferrer/builder_kernel.dart b/pkg/compiler/lib/src/inferrer/builder_kernel.dart
index 24a9ddcdeab56688d00908c6d09df1d039ff599e..1dfd81336aceb8fd50f74f53874737823525a867 100644
--- a/pkg/compiler/lib/src/inferrer/builder_kernel.dart
+++ b/pkg/compiler/lib/src/inferrer/builder_kernel.dart
@@ -106,7 +106,7 @@ class KernelTypeGraphBuilder extends ir.Visitor<TypeInformation> {
// previous analysis of [outermostElement].
ClosureRepresentationInfo closureData = compiler
.backendStrategy.closureDataLookup
- .getClosureRepresentationInfo(resolvedAst.element);
+ .getMemberRepresentationInfo(outermostElement);
closureData.forEachCapturedVariable((variable, field) {
locals.setCaptured(variable, field);
});

Powered by Google App Engine
This is Rietveld 408576698