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

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

Issue 2920253004: Revert "Revert "Make ClosureTask only accept Element-level APIs instead of resolvedAst."" (Closed)
Patch Set: fix teh tests 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/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 dd06c8b9f5d93d1118747c3f19cbce375ecc10c3..1e2f9a69a1213a713666ce93937901742552ea0b 100644
--- a/pkg/compiler/lib/src/inferrer/builder_kernel.dart
+++ b/pkg/compiler/lib/src/inferrer/builder_kernel.dart
@@ -103,8 +103,8 @@ class KernelTypeGraphBuilder extends ir.Visitor<TypeInformation> {
// be handled specially, in that we are computing their LUB at
// each update, and reading them yields the type that was found in a
// previous analysis of [outermostElement].
- ClosureClassMap closureData =
- compiler.closureToClassMapper.getClosureToClassMapping(resolvedAst);
+ ClosureClassMap closureData = compiler.closureToClassMapper
+ .getClosureToClassMapping(resolvedAst.element);
closureData.forEachCapturedVariable((variable, field) {
locals.setCaptured(variable, field);
});

Powered by Google App Engine
This is Rietveld 408576698