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

Unified Diff: editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/AnalysisServer.java

Issue 861893003: Library Dependencies Analysis service API. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 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.server/src/com/google/dart/server/AnalysisServer.java
===================================================================
--- editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/AnalysisServer.java (revision 43075)
+++ editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/AnalysisServer.java (working copy)
@@ -81,6 +81,13 @@
public void analysis_getHover(String file, int offset, GetHoverConsumer consumer);
/**
+ * {@code analysis.getLibraryDependencies}
+ *
+ * Return a list of all of the libraries referenced by any files in existing analysis roots.
+ */
+ public void analysis_getLibraryDependencies(GetLibraryDependenciesConsumer consumer);
+
+ /**
* {@code analysis.getNavigation}
*
* Return the navigation information associated with the given region of the given file. If the

Powered by Google App Engine
This is Rietveld 408576698