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

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

Issue 9633009: Use Element instead of Symbol. (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/Element.java
diff --git a/compiler/java/com/google/dart/compiler/resolver/Element.java b/compiler/java/com/google/dart/compiler/resolver/Element.java
index ee3190c5653076eed54bd91a2e5044ac071ff689..62536e01f11d1bad77588a48f283820f4caf2c53 100644
--- a/compiler/java/com/google/dart/compiler/resolver/Element.java
+++ b/compiler/java/com/google/dart/compiler/resolver/Element.java
@@ -5,11 +5,15 @@
package com.google.dart.compiler.resolver;
import com.google.dart.compiler.ast.DartLabel;
+import com.google.dart.compiler.ast.DartNode;
import com.google.dart.compiler.ast.Modifiers;
-import com.google.dart.compiler.common.Symbol;
import com.google.dart.compiler.type.Type;
-public interface Element extends Symbol {
+public interface Element {
+ String getOriginalName();
Brian Wilkerson 2012/03/08 16:12:00 Not for this CL, but can this go away? I'm guessin
scheglov 2012/03/08 16:46:50 Sure. This CL is only about consolidating everythi
+
+ DartNode getNode();
+
void setNode(DartLabel node);
String getName();

Powered by Google App Engine
This is Rietveld 408576698