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

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

Issue 9689080: Add ClassNodeElement and allow Analyzer to use cached unimplemented members (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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 698893bb74a5c1d9c6a335eabc28ed3ce4086e6c..da413c1faaed93c26084588451f553bd279a4064 100644
--- a/compiler/java/com/google/dart/compiler/resolver/ClassElement.java
+++ b/compiler/java/com/google/dart/compiler/resolver/ClassElement.java
@@ -51,4 +51,11 @@ public interface ClassElement extends EnclosingElement {
boolean isAbstract();
ConstructorElement lookupConstructor(String name);
+
+ /**
+ * @return the {@link Element}s which are declared in superclass or interfaces, but not
+ * implemented in this class. May be <code>null</code> if this {@link ClassElement} is
+ * {@link ClassNodeElement} and was not analyzed yet.
+ */
+ List<Element> getUnimplementedMembers();
}

Powered by Google App Engine
This is Rietveld 408576698