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

Unified Diff: pkg/analysis_server/test/integration/protocol_matchers.dart

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: pkg/analysis_server/test/integration/protocol_matchers.dart
===================================================================
--- pkg/analysis_server/test/integration/protocol_matchers.dart (revision 43075)
+++ pkg/analysis_server/test/integration/protocol_matchers.dart (working copy)
@@ -146,6 +146,23 @@
}));
/**
+ * analysis.getLibraryDependencies params
+ */
+final Matcher isAnalysisGetLibraryDependenciesParams = isNull;
+
+/**
+ * analysis.getLibraryDependencies result
+ *
+ * {
+ * "libraries": List<FilePath>
+ * }
+ */
+final Matcher isAnalysisGetLibraryDependenciesResult = new LazyMatcher(() => new MatchesJsonObject(
+ "analysis.getLibraryDependencies result", {
+ "libraries": isListOf(isFilePath)
+ }));
+
+/**
* analysis.getNavigation params
*
* {

Powered by Google App Engine
This is Rietveld 408576698