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

Unified Diff: pkg/compiler/lib/src/universe/resolution_world_builder.dart

Issue 2927093002: Support user class in compile_from_dill_test (Closed)
Patch Set: Updated cf. comments 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
« no previous file with comments | « pkg/compiler/lib/src/ssa/optimize.dart ('k') | pkg/compiler/lib/src/universe/world_builder.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/universe/resolution_world_builder.dart
diff --git a/pkg/compiler/lib/src/universe/resolution_world_builder.dart b/pkg/compiler/lib/src/universe/resolution_world_builder.dart
index b45c1c91c8accb2274d9333ef5a4d98c810b38dd..0b02e4555d594459d085a2c40441af5b25574a25 100644
--- a/pkg/compiler/lib/src/universe/resolution_world_builder.dart
+++ b/pkg/compiler/lib/src/universe/resolution_world_builder.dart
@@ -931,6 +931,8 @@ abstract class ResolutionWorldBuilderBase
abstract class KernelResolutionWorldBuilderBase
extends ResolutionWorldBuilderBase {
+ KernelToElementMapImpl get elementMap;
+
KernelResolutionWorldBuilderBase(
ElementEnvironment elementEnvironment,
CommonElements commonElements,
@@ -959,7 +961,8 @@ abstract class KernelResolutionWorldBuilderBase
_classHierarchyNodes.length == _classSets.length,
"ClassHierarchyNode/ClassSet mismatch: "
"$_classHierarchyNodes vs $_classSets");
- return _closedWorldCache = new KernelClosedWorld(
+ return _closedWorldCache = new KernelClosedWorld(elementMap,
+ elementEnvironment: _elementEnvironment,
commonElements: _commonElements,
nativeData: _nativeDataBuilder.close(),
interceptorData: _interceptorDataBuilder.close(),
« no previous file with comments | « pkg/compiler/lib/src/ssa/optimize.dart ('k') | pkg/compiler/lib/src/universe/world_builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698