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

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

Issue 9700019: Use NodeElement to access Node in Resolver (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 da413c1faaed93c26084588451f553bd279a4064..0810331c559fe856b74c692f697f52ed86ccf8d7 100644
--- a/compiler/java/com/google/dart/compiler/resolver/ClassElement.java
+++ b/compiler/java/com/google/dart/compiler/resolver/ClassElement.java
@@ -23,7 +23,7 @@ public interface ClassElement extends EnclosingElement {
void setSupertype(InterfaceType element);
- List<ConstructorElement> getConstructors();
+ List<? extends ConstructorElement> getConstructors();
LibraryElement getLibrary();

Powered by Google App Engine
This is Rietveld 408576698