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

Unified Diff: pkg/compiler/lib/src/universe/element_world_builder.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/universe/element_world_builder.dart
diff --git a/pkg/compiler/lib/src/universe/element_world_builder.dart b/pkg/compiler/lib/src/universe/element_world_builder.dart
index 4735bdb3f0c654f4870c4272a25b0983ede5fdb8..36a2c8f76b417796bee85454524ee0b224c95143 100644
--- a/pkg/compiler/lib/src/universe/element_world_builder.dart
+++ b/pkg/compiler/lib/src/universe/element_world_builder.dart
@@ -13,10 +13,14 @@ class ElementResolutionWorldBuilder extends ResolutionWorldBuilderBase {
final JavaScriptBackend _backend;
final Resolution _resolution;
- ElementResolutionWorldBuilder(this._backend, this._resolution,
+ ElementResolutionWorldBuilder(
+ this._backend,
+ this._resolution,
+ NativeBasicData nativeBasicData,
+ NativeDataBuilder nativeDataBuilder,
SelectorConstraintsStrategy selectorConstraintsStrategy)
: super(_backend.compiler.elementEnvironment, _resolution.commonElements,
- _backend.nativeBasicData, selectorConstraintsStrategy);
+ nativeBasicData, nativeDataBuilder, selectorConstraintsStrategy);
bool isImplemented(ClassElement cls) {
return super.isImplemented(cls.declaration);
« no previous file with comments | « pkg/compiler/lib/src/resolution/resolution_strategy.dart ('k') | pkg/compiler/lib/src/universe/resolution_world_builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698