| Index: pkg/compiler/lib/src/universe/side_effects.dart
|
| diff --git a/pkg/compiler/lib/src/universe/side_effects.dart b/pkg/compiler/lib/src/universe/side_effects.dart
|
| index 66b4aa76fc709cfb37277c7ab516810d39e3f0b5..4c5a719445c19b7a4fa60baf740c1a81af9d885f 100644
|
| --- a/pkg/compiler/lib/src/universe/side_effects.dart
|
| +++ b/pkg/compiler/lib/src/universe/side_effects.dart
|
| @@ -2,7 +2,31 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|
| -part of universe;
|
| +library universe.side_effects;
|
| +
|
| +import 'dart:collection';
|
| +
|
| +import '../common/names.dart' show
|
| + Identifiers,
|
| + Names,
|
| + Selectors;
|
| +import '../compiler.dart' show
|
| + Compiler;
|
| +import '../diagnostics/invariant.dart' show
|
| + invariant;
|
| +import '../diagnostics/spannable.dart' show
|
| + SpannableAssertionFailure;
|
| +import '../elements/elements.dart';
|
| +import '../dart_types.dart';
|
| +import '../tree/tree.dart';
|
| +import '../types/types.dart';
|
| +import '../util/util.dart';
|
| +import '../world.dart' show
|
| + ClassWorld,
|
| + World;
|
| +
|
| +import 'selector.dart' show
|
| + Selector;
|
|
|
| class SideEffects {
|
| // Changes flags.
|
|
|