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

Unified Diff: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/operation/CreateTypeOperation.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: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/operation/CreateTypeOperation.java
diff --git a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/operation/CreateTypeOperation.java b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/operation/CreateTypeOperation.java
index 2eb5a2d534439f9b69726d0604021ac082b39509..3cb7b7926e995a2f58ed41dac629d782b3bea353 100644
--- a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/operation/CreateTypeOperation.java
+++ b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/operation/CreateTypeOperation.java
@@ -108,6 +108,6 @@ public class CreateTypeOperation extends CreateTypeMemberOperation {
}
private String getASTNodeName() {
- return ((DartClass) this.createdNode).getName().getTargetName();
+ return ((DartClass) this.createdNode).getName().getName();
}
}

Powered by Google App Engine
This is Rietveld 408576698