Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(719)

Unified Diff: pkg/compiler/lib/src/universe/feature.dart

Issue 2667473003: Move Entity and Local to entities.dart (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/compiler/lib/src/types/masks.dart ('k') | pkg/compiler/lib/src/universe/use.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « pkg/compiler/lib/src/types/masks.dart ('k') | pkg/compiler/lib/src/universe/use.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698