| 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 a06f79bb0165deef9e631efab76d7d019892d5fa..5238ec5ad4c6c10146f55296f7bb59cc1447ff3a 100644
|
| --- a/pkg/compiler/lib/src/universe/resolution_world_builder.dart
|
| +++ b/pkg/compiler/lib/src/universe/resolution_world_builder.dart
|
| @@ -796,23 +796,9 @@ class KernelResolutionWorldBuilder extends ResolutionWorldBuilderBase {
|
| selectorConstraintsStrategy);
|
|
|
| @override
|
| - ClosedWorld closeWorld() {
|
| + ClosedWorld closeWorld(DiagnosticReporter reporter) {
|
| // TODO(johnniwinther): Implement this.
|
| - return _closedWorldCache = new KernelClosedWorld(
|
| - commonElements: _commonElements,
|
| - // TODO(johnniwinther): Compute these.
|
| - constantSystem: null,
|
| - nativeData: null,
|
| - interceptorData: null,
|
| - backendUsage: null,
|
| - resolutionWorldBuilder: this,
|
| - functionSetBuilder: _allFunctions,
|
| - allTypedefs: _allTypedefs,
|
| - mixinUses: _mixinUses,
|
| - // TODO(johnniwinther): Compute this.
|
| - typesImplementedBySubclasses: null,
|
| - classHierarchyNodes: _classHierarchyNodes,
|
| - classSets: _classSets);
|
| + return null;
|
| }
|
|
|
| @override
|
|
|