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

Unified Diff: pkg/compiler/lib/src/elements/entities.dart

Issue 2598983002: Introduce DartType super hierarchy based on Entity (Closed)
Patch Set: Cleanup. Created 4 years 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
Index: pkg/compiler/lib/src/elements/entities.dart
diff --git a/pkg/compiler/lib/src/elements/entities.dart b/pkg/compiler/lib/src/elements/entities.dart
index ce1fc567de623549a26b07ae6e1611e86b36bf92..f46c790603819198d8bb5e3677cff4f72fd4af02 100644
--- a/pkg/compiler/lib/src/elements/entities.dart
+++ b/pkg/compiler/lib/src/elements/entities.dart
@@ -16,6 +16,11 @@ abstract class ClassEntity extends Entity {
{bool includeSuperAndInjectedMembers: false});
}
+abstract class TypeVariableEntity extends Entity {
+ Entity get typeDeclaration;
+ int get index;
+}
+
/// Stripped down super interface for member like entities, that is,
/// constructors, methods, fields etc.
///

Powered by Google App Engine
This is Rietveld 408576698