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

Unified Diff: compiler/java/com/google/dart/compiler/resolver/ClassNodeElement.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/ClassNodeElement.java
diff --git a/compiler/java/com/google/dart/compiler/resolver/ClassNodeElement.java b/compiler/java/com/google/dart/compiler/resolver/ClassNodeElement.java
index c34dbb5d9af935ecd480bb4a4bd07ac0ef816796..8a266a1dfffa7f1f7dd5a4e9c473e22726b203d1 100644
--- a/compiler/java/com/google/dart/compiler/resolver/ClassNodeElement.java
+++ b/compiler/java/com/google/dart/compiler/resolver/ClassNodeElement.java
@@ -6,6 +6,10 @@ package com.google.dart.compiler.resolver;
import java.util.List;
public interface ClassNodeElement extends ClassElement, NodeElement {
+ Iterable<NodeElement> getMembers();
+
+ List<ConstructorNodeElement> getConstructors();
+
/**
* Sets {@link Element}s which as not implemented in this {@link ClassElement}.
*/

Powered by Google App Engine
This is Rietveld 408576698