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

Unified Diff: compiler/java/com/google/dart/compiler/ast/DartInitializer.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/ast/DartInitializer.java
diff --git a/compiler/java/com/google/dart/compiler/ast/DartInitializer.java b/compiler/java/com/google/dart/compiler/ast/DartInitializer.java
index 109c4bb0484cd3be529002f15c910a83932c2400..cf64e94a273b9c14fc444f945353789762ffe479 100644
--- a/compiler/java/com/google/dart/compiler/ast/DartInitializer.java
+++ b/compiler/java/com/google/dart/compiler/ast/DartInitializer.java
@@ -21,7 +21,7 @@ public class DartInitializer extends DartNode {
if (name == null) {
return null;
}
- return name.getTargetName();
+ return name.getName();
}
public DartIdentifier getName() {

Powered by Google App Engine
This is Rietveld 408576698