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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/index/RelationshipCallback.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/index/RelationshipCallback.java
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/index/RelationshipCallback.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/index/RelationshipCallback.java
index eb2c1ddc3903bbe3ea5eb15c8bb80a4f8cea3835..52189535938900d54bb09359ca71012ef50b59b7 100644
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/index/RelationshipCallback.java
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/index/RelationshipCallback.java
@@ -13,7 +13,7 @@
*/
package com.google.dart.engine.index;
-import com.google.dart.engine.element.ElementLocation;
+import com.google.dart.engine.element.ElementProxy;
/**
* The interface <code>RelationshipCallback</code> defines the behavior of objects that are invoked
@@ -26,10 +26,9 @@ public interface RelationshipCallback {
* is-referenced-by relationship, then this method will be invoked with each location at which the
* field is referenced.
*
- * @param elementLocation the {@link ElementLocation} that has the relationship with the locations
+ * @param element the {@link ElementProxy} that has the relationship with the locations
* @param relationship the relationship between the given element and the locations
* @param locations the locations that were found
*/
- public void hasRelationships(ElementLocation elementLocation, Relationship relationship,
- Location[] locations);
+ public void hasRelationships(ElementProxy element, Relationship relationship, Location[] locations);
}

Powered by Google App Engine
This is Rietveld 408576698