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

Unified Diff: compiler/java/com/google/dart/compiler/resolver/FieldNodeElement.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/FieldNodeElement.java
diff --git a/compiler/java/com/google/dart/compiler/resolver/FieldNodeElement.java b/compiler/java/com/google/dart/compiler/resolver/FieldNodeElement.java
index 9efcaa4462ffe221710f074ae9780e90bff2024c..2a69d920a21778e6296aa928c4160eef11058a64 100644
--- a/compiler/java/com/google/dart/compiler/resolver/FieldNodeElement.java
+++ b/compiler/java/com/google/dart/compiler/resolver/FieldNodeElement.java
@@ -16,4 +16,8 @@ public interface FieldNodeElement extends FieldElement, NodeElement {
* @param type the {@link Type} to set, not <code>null</code>.
*/
void setConstantType(Type type);
+
+ MethodNodeElement getGetter();
+
+ MethodNodeElement getSetter();
}

Powered by Google App Engine
This is Rietveld 408576698