| Index: pkg/compiler/lib/src/inferrer/concrete_types_inferrer.dart
|
| diff --git a/pkg/compiler/lib/src/inferrer/concrete_types_inferrer.dart b/pkg/compiler/lib/src/inferrer/concrete_types_inferrer.dart
|
| index e9c5307dc6f37e0dd410afdfeb3b422baf27c4c8..474f71f200c1f23e74b80a53ac1be843aa3f04dc 100644
|
| --- a/pkg/compiler/lib/src/inferrer/concrete_types_inferrer.dart
|
| +++ b/pkg/compiler/lib/src/inferrer/concrete_types_inferrer.dart
|
| @@ -4,20 +4,32 @@
|
|
|
| library concrete_types_inferrer;
|
|
|
| -import 'dart:collection' show Queue, IterableBase;
|
| +import 'dart:collection' show
|
| + Queue,
|
| + IterableBase;
|
| +
|
| import '../native/native.dart' as native;
|
| -import '../closure.dart' show BoxFieldElement;
|
| -import '../dart2jslib.dart' hide Selector, TypedSelector;
|
| -import '../dart_types.dart' show DartType, TypeKind;
|
| +import '../closure.dart' show
|
| + BoxFieldElement;
|
| +import '../compiler.dart' show
|
| + Compiler;
|
| +import '../dart_types.dart' show
|
| + DartType,
|
| + TypeKind;
|
| +import '../diagnostics/spannable.dart' show
|
| + Spannable;
|
| import '../elements/elements.dart';
|
| import '../tree/tree.dart';
|
| +import '../types/types.dart' show
|
| + FlatTypeMask,
|
| + TypeMask,
|
| + TypesInferrer,
|
| + UnionTypeMask;
|
| import '../universe/universe.dart';
|
| -import '../util/util.dart';
|
| -import '../world.dart' show ClassWorld;
|
| +import '../world.dart' show
|
| + ClassWorld;
|
|
|
| import 'inferrer_visitor.dart';
|
| -import '../types/types.dart' show TypeMask, FlatTypeMask, UnionTypeMask,
|
| - TypesInferrer;
|
| import 'simple_types_inferrer.dart';
|
|
|
| /**
|
|
|