| 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);
|
|
|