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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/CompilationUnit.java

Issue 11787017: Initial implementation of MemoryIndexStoreImpl and IndexContributor. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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.engine/src/com/google/dart/engine/ast/CompilationUnit.java
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/CompilationUnit.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/CompilationUnit.java
index 07ee3941ed77b5ec7aba24091bad76bd29da42be..972d501273df3774bf1d13696ee9c02582ab86bc 100644
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/CompilationUnit.java
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/CompilationUnit.java
@@ -126,10 +126,10 @@ public class CompilationUnit extends ASTNode {
}
/**
- * Return the element associated with this compilation unit, or {@code null} if the AST structure
- * has not been resolved.
+ * Return the {@link CompilationUnitElement} associated with this compilation unit, or
Brian Wilkerson 2013/01/07 21:27:18 My personal preference (which means you can ignore
scheglov 2013/01/07 22:45:41 Well, I prefer to use class names for terms which
+ * {@code null} if the AST structure has not been resolved.
*
- * @return the element associated with this compilation unit
+ * @return the {@link CompilationUnitElement} associated with this compilation unit
*/
public CompilationUnitElement getElement() {
return element;

Powered by Google App Engine
This is Rietveld 408576698