Index: pkg/analysis_server/test/integration/protocol_matchers.dart |
diff --git a/pkg/analysis_server/test/integration/protocol_matchers.dart b/pkg/analysis_server/test/integration/protocol_matchers.dart |
index fbb40a8f7b9613cb2f962ab9ef49c70c93166a55..944edb6364cd353eb3d9b596315e997ebdb6a02a 100644 |
--- a/pkg/analysis_server/test/integration/protocol_matchers.dart |
+++ b/pkg/analysis_server/test/integration/protocol_matchers.dart |
@@ -243,6 +243,23 @@ final Matcher isAnalysisSetAnalysisRootsParams = new LazyMatcher(() => new Match |
final Matcher isAnalysisSetAnalysisRootsResult = isNull; |
/** |
+ * analysis.setGeneralSubscriptions params |
+ * |
+ * { |
+ * "subscriptions": List<GeneralAnalysisService> |
+ * } |
+ */ |
+final Matcher isAnalysisSetGeneralSubscriptionsParams = new LazyMatcher(() => new MatchesJsonObject( |
+ "analysis.setGeneralSubscriptions params", { |
+ "subscriptions": isListOf(isGeneralAnalysisService) |
+ })); |
+ |
+/** |
+ * analysis.setGeneralSubscriptions result |
+ */ |
+final Matcher isAnalysisSetGeneralSubscriptionsResult = isNull; |
+ |
+/** |
* analysis.setPriorityFiles params |
* |
* { |
@@ -315,6 +332,18 @@ final Matcher isAnalysisUpdateOptionsParams = new LazyMatcher(() => new MatchesJ |
final Matcher isAnalysisUpdateOptionsResult = isNull; |
/** |
+ * analysis.analyzedFiles params |
+ * |
+ * { |
+ * "directories": List<FilePath> |
+ * } |
+ */ |
+final Matcher isAnalysisAnalyzedFilesParams = new LazyMatcher(() => new MatchesJsonObject( |
+ "analysis.analyzedFiles params", { |
+ "directories": isListOf(isFilePath) |
+ })); |
+ |
+/** |
* analysis.errors params |
* |
* { |
@@ -1345,6 +1374,17 @@ final Matcher isFoldingRegion = new LazyMatcher(() => new MatchesJsonObject( |
})); |
/** |
+ * GeneralAnalysisService |
+ * |
+ * enum { |
+ * ANALYZED_FILES |
+ * } |
+ */ |
+final Matcher isGeneralAnalysisService = new MatchesEnum("GeneralAnalysisService", [ |
+ "ANALYZED_FILES" |
+]); |
+ |
+/** |
* HighlightRegion |
* |
* { |