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

Unified Diff: compiler/java/com/google/dart/compiler/resolver/ClassElement.java

Issue 11776037: Initial support for mixins in dartc. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Forgot MixinScope.java Created 7 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
Index: compiler/java/com/google/dart/compiler/resolver/ClassElement.java
diff --git a/compiler/java/com/google/dart/compiler/resolver/ClassElement.java b/compiler/java/com/google/dart/compiler/resolver/ClassElement.java
index 9a2e77e9f4467af7f4d0c7e27d5941c6c3a3ec9b..467667122efea9fa70b253225453ded3f26a4e07 100644
--- a/compiler/java/com/google/dart/compiler/resolver/ClassElement.java
+++ b/compiler/java/com/google/dart/compiler/resolver/ClassElement.java
@@ -28,6 +28,8 @@ public interface ClassElement extends EnclosingElement {
LibraryElement getLibrary();
List<InterfaceType> getInterfaces();
+
+ List<InterfaceType> getMixins();
List<InterfaceType> getAllSupertypes() throws CyclicDeclarationException;

Powered by Google App Engine
This is Rietveld 408576698