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

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

Issue 2871583002: Pass InterceptorData through ResolutionWorldBuilder and access it through ClosedWorld (Closed)
Patch Set: Created 3 years, 7 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/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 991cd53b03b4c41716f4fce5356c146925fcff6f..d09c7881fd750ae9dbd49c4576d386022213b996 100644
--- a/pkg/compiler/lib/src/universe/resolution_world_builder.dart
+++ b/pkg/compiler/lib/src/universe/resolution_world_builder.dart
@@ -334,6 +334,7 @@ abstract class ResolutionWorldBuilderBase
final NativeBasicData _nativeBasicData;
final NativeDataBuilder _nativeDataBuilder;
+ final InterceptorDataBuilder _interceptorDataBuilder;
final SelectorConstraintsStrategy selectorConstraintsStrategy;
@@ -365,6 +366,7 @@ abstract class ResolutionWorldBuilderBase
this._commonElements,
this._nativeBasicData,
this._nativeDataBuilder,
+ this._interceptorDataBuilder,
this.selectorConstraintsStrategy) {
_allFunctions = new FunctionSetBuilder();
}
@@ -921,9 +923,15 @@ abstract class KernelResolutionWorldBuilderBase
CommonElements commonElements,
NativeBasicData nativeBasicData,
NativeDataBuilder nativeDataBuilder,
+ InterceptorDataBuilder interceptorDataBuilder,
SelectorConstraintsStrategy selectorConstraintsStrategy)
- : super(elementEnvironment, commonElements, nativeBasicData,
- nativeDataBuilder, selectorConstraintsStrategy);
+ : super(
+ elementEnvironment,
+ commonElements,
+ nativeBasicData,
+ nativeDataBuilder,
+ interceptorDataBuilder,
+ selectorConstraintsStrategy);
@override
ClosedWorld closeWorld() {
« no previous file with comments | « pkg/compiler/lib/src/universe/element_world_builder.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