| Index: pkg/compiler/lib/src/inferrer/inferrer_visitor.dart
|
| diff --git a/pkg/compiler/lib/src/inferrer/inferrer_visitor.dart b/pkg/compiler/lib/src/inferrer/inferrer_visitor.dart
|
| index 093e229130492185ffe63e47425c7feb07b61639..b0780e3712848c66a11ef192909472d80abe210f 100644
|
| --- a/pkg/compiler/lib/src/inferrer/inferrer_visitor.dart
|
| +++ b/pkg/compiler/lib/src/inferrer/inferrer_visitor.dart
|
| @@ -4,21 +4,28 @@
|
|
|
| library inferrer_visitor;
|
|
|
| -import 'dart:collection' show IterableMixin;
|
| +import 'dart:collection' show
|
| + IterableMixin;
|
|
|
| +import '../compiler.dart' show
|
| + Compiler;
|
| import '../constants/constant_system.dart';
|
| import '../constants/expressions.dart';
|
| -import '../dart2jslib.dart' hide Selector, TypedSelector;
|
| import '../dart_types.dart';
|
| +import '../diagnostics/spannable.dart' show
|
| + Spannable;
|
| import '../elements/elements.dart';
|
| import '../resolution/operators.dart';
|
| import '../resolved_visitor.dart';
|
| import '../tree/tree.dart';
|
| -import '../types/types.dart' show TypeMask;
|
| -import '../types/constants.dart' show computeTypeMask;
|
| +import '../types/types.dart' show
|
| + TypeMask;
|
| +import '../types/constants.dart' show
|
| + computeTypeMask;
|
| import '../universe/universe.dart';
|
| import '../util/util.dart';
|
| -import '../world.dart' show ClassWorld;
|
| +import '../world.dart' show
|
| + ClassWorld;
|
|
|
| /**
|
| * The interface [InferrerVisitor] will use when working on types.
|
|
|