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

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

Issue 2954493002: Less inequivalence on Hello World! (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/universe/element_world_builder.dart ('k') | pkg/compiler/lib/src/world.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 6f06e5ab6e0920a310275271c75b0a4d38b04c50..2e997f7d916824f1621b551b5a6434948000250f 100644
--- a/pkg/compiler/lib/src/universe/resolution_world_builder.dart
+++ b/pkg/compiler/lib/src/universe/resolution_world_builder.dart
@@ -337,7 +337,7 @@ abstract class ResolutionWorldBuilderBase
new Set<FunctionEntity>();
final ElementEnvironment _elementEnvironment;
-
+ final DartTypes _dartTypes;
final CommonElements _commonElements;
final ConstantSystem _constantSystem;
@@ -373,6 +373,7 @@ abstract class ResolutionWorldBuilderBase
ResolutionWorldBuilderBase(
this._elementEnvironment,
+ this._dartTypes,
this._commonElements,
this._constantSystem,
this._nativeBasicData,
@@ -937,6 +938,7 @@ abstract class KernelResolutionWorldBuilderBase
KernelResolutionWorldBuilderBase(
ElementEnvironment elementEnvironment,
+ DartTypes dartTypes,
CommonElements commonElements,
ConstantSystem constantSystem,
NativeBasicData nativeBasicData,
@@ -946,6 +948,7 @@ abstract class KernelResolutionWorldBuilderBase
SelectorConstraintsStrategy selectorConstraintsStrategy)
: super(
elementEnvironment,
+ dartTypes,
commonElements,
constantSystem,
nativeBasicData,
@@ -966,6 +969,7 @@ abstract class KernelResolutionWorldBuilderBase
"$_classHierarchyNodes vs $_classSets");
return _closedWorldCache = new KernelClosedWorld(elementMap,
elementEnvironment: _elementEnvironment,
+ dartTypes: _dartTypes,
commonElements: _commonElements,
nativeData: _nativeDataBuilder.close(),
interceptorData: _interceptorDataBuilder.close(),
« no previous file with comments | « pkg/compiler/lib/src/universe/element_world_builder.dart ('k') | pkg/compiler/lib/src/world.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698