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/MethodNodeElement.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/MethodNodeElement.java
diff --git a/compiler/java/com/google/dart/compiler/resolver/ClassNodeElement.java b/compiler/java/com/google/dart/compiler/resolver/MethodNodeElement.java
similarity index 52%
copy from compiler/java/com/google/dart/compiler/resolver/ClassNodeElement.java
copy to compiler/java/com/google/dart/compiler/resolver/MethodNodeElement.java
index c34dbb5d9af935ecd480bb4a4bd07ac0ef816796..32dbf92682eb39cc02f372159b4d9e15e449c07e 100644
--- a/compiler/java/com/google/dart/compiler/resolver/ClassNodeElement.java
+++ b/compiler/java/com/google/dart/compiler/resolver/MethodNodeElement.java
@@ -3,11 +3,10 @@
// BSD-style license that can be found in the LICENSE file.
package com.google.dart.compiler.resolver;
-import java.util.List;
+import com.google.dart.compiler.ast.DartNode;
-public interface ClassNodeElement extends ClassElement, NodeElement {
- /**
- * Sets {@link Element}s which as not implemented in this {@link ClassElement}.
- */
- void setUnimplementedMembers(List<Element> members);
+/**
+ * Extension of {@link MethodElement} which is base of {@link DartNode}.
zundel 2012/03/14 14:57:27 this comment seems redundant with the class declar
scheglov 2012/03/14 15:20:51 I still prefer to have some comment, just because
+ */
+public interface MethodNodeElement extends MethodElement, NodeElement {
}

Powered by Google App Engine
This is Rietveld 408576698