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

Unified Diff: compiler/java/com/google/dart/compiler/ast/LibraryUnit.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/LibraryUnit.java
diff --git a/compiler/java/com/google/dart/compiler/ast/LibraryUnit.java b/compiler/java/com/google/dart/compiler/ast/LibraryUnit.java
index 19dfa925de1b69ee7202bcfbec98316ca4862ecf..9c822da7d34f8af569c51df22867ada409769ab1 100644
--- a/compiler/java/com/google/dart/compiler/ast/LibraryUnit.java
+++ b/compiler/java/com/google/dart/compiler/ast/LibraryUnit.java
@@ -73,7 +73,7 @@ public class LibraryUnit {
if ((lastSlash = self.lastIndexOf('/')) > -1) {
self = self.substring(lastSlash + 1);
}
- selfSourcePath = new LibraryNode(self);
+ selfSourcePath = new LibraryNode(self);
}
public void addImportPath(LibraryNode path) {
@@ -173,7 +173,7 @@ public class LibraryUnit {
/**
* Return the path for dart source that corresponds to the same dart file as
* this library unit. This is added to the set of sourcePaths for this unit.
- *
+ *
* @return the self source path for this unit.
*/
public LibraryNode getSelfSourcePath() {

Powered by Google App Engine
This is Rietveld 408576698