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

Unified Diff: pkg/compiler/lib/src/kernel/kernel_strategy.dart

Issue 2869753002: Pass NativeDataBuilder through ResolutionWorldBuilder (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/kernel/kernel_strategy.dart
diff --git a/pkg/compiler/lib/src/kernel/kernel_strategy.dart b/pkg/compiler/lib/src/kernel/kernel_strategy.dart
index 00f2c164c297b54665f00f224c86add858589733..3390c9b9f9623294351d665b6a87b9503b13fc26 100644
--- a/pkg/compiler/lib/src/kernel/kernel_strategy.dart
+++ b/pkg/compiler/lib/src/kernel/kernel_strategy.dart
@@ -108,9 +108,10 @@ class KernelFrontEndStrategy implements FrontEndStrategy {
ResolutionWorldBuilder createResolutionWorldBuilder(
NativeBasicData nativeBasicData,
+ NativeDataBuilder nativeDataBuilder,
SelectorConstraintsStrategy selectorConstraintsStrategy) {
- return new KernelResolutionWorldBuilder(
- elementMap, nativeBasicData, selectorConstraintsStrategy);
+ return new KernelResolutionWorldBuilder(elementMap, nativeBasicData,
+ nativeDataBuilder, selectorConstraintsStrategy);
}
WorkItemBuilder createResolutionWorkItemBuilder(
« no previous file with comments | « pkg/compiler/lib/src/kernel/element_map_impl.dart ('k') | pkg/compiler/lib/src/resolution/resolution_strategy.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698