| Index: pkg/compiler/lib/src/universe/feature.dart
|
| diff --git a/pkg/compiler/lib/src/universe/feature.dart b/pkg/compiler/lib/src/universe/feature.dart
|
| index d3d8dfa10b248294229f60cd44d137fdff4a5798..03315f070cba1c5960bd93de5925f982ce70de0d 100644
|
| --- a/pkg/compiler/lib/src/universe/feature.dart
|
| +++ b/pkg/compiler/lib/src/universe/feature.dart
|
| @@ -8,7 +8,7 @@
|
| /// compilation pipeline, for example during resolution.
|
| library compiler.universe.feature;
|
|
|
| -import '../elements/resolution_types.dart' show ResolutionInterfaceType;
|
| +import '../elements/types.dart' show InterfaceType;
|
|
|
| /// A language feature that may be seen in the program.
|
| // TODO(johnniwinther): Should mirror usage be part of this?
|
| @@ -88,7 +88,7 @@ enum Feature {
|
|
|
| /// Describes a use of a map literal in the program.
|
| class MapLiteralUse {
|
| - final ResolutionInterfaceType type;
|
| + final InterfaceType type;
|
| final bool isConstant;
|
| final bool isEmpty;
|
|
|
| @@ -115,7 +115,7 @@ class MapLiteralUse {
|
|
|
| /// Describes the use of a list literal in the program.
|
| class ListLiteralUse {
|
| - final ResolutionInterfaceType type;
|
| + final InterfaceType type;
|
| final bool isConstant;
|
| final bool isEmpty;
|
|
|
|
|