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

Unified Diff: compiler/java/com/google/dart/compiler/resolver/FunctionAliasElementImplementation.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/FunctionAliasElementImplementation.java
diff --git a/compiler/java/com/google/dart/compiler/resolver/FunctionAliasElementImplementation.java b/compiler/java/com/google/dart/compiler/resolver/FunctionAliasElementImplementation.java
index 05c94b2bbfed5590b97d6ffb5e34eb11289023ac..e6f243912c0211f7049a35acb1a410b8e18a30aa 100644
--- a/compiler/java/com/google/dart/compiler/resolver/FunctionAliasElementImplementation.java
+++ b/compiler/java/com/google/dart/compiler/resolver/FunctionAliasElementImplementation.java
@@ -55,6 +55,6 @@ public class FunctionAliasElementImplementation extends ClassElementImplementati
public static FunctionAliasElement fromNode(DartFunctionTypeAlias node,
LibraryElement library) {
return new FunctionAliasElementImplementation(
- node, node.getName().getTargetName(), library);
+ node, node.getName().getName(), library);
}
}

Powered by Google App Engine
This is Rietveld 408576698