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

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

Issue 11787017: Initial implementation of MemoryIndexStoreImpl and IndexContributor. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update for review comments 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/ASTNode.java
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ASTNode.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ASTNode.java
index 41ea707e1fa098b09807036834c2fcc61cb4fdf2..283cc586fde508daa358ce1941bcd3b0176d6350 100644
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ASTNode.java
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/ast/ASTNode.java
@@ -101,7 +101,7 @@ public abstract class ASTNode {
*
* @return the parent of this node, or {@code null} if none
*/
- public final ASTNode getParent() {
+ public ASTNode getParent() {
return parent;
}

Powered by Google App Engine
This is Rietveld 408576698