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

Unified Diff: pkg/analyzer_plugin/test/integration/support/protocol_matchers.dart

Issue 2964113003: Remove an unused request and the associated type (Closed)
Patch Set: Created 3 years, 6 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/analyzer_plugin/test/integration/support/protocol_matchers.dart
diff --git a/pkg/analyzer_plugin/test/integration/support/protocol_matchers.dart b/pkg/analyzer_plugin/test/integration/support/protocol_matchers.dart
index ed457e4b8d5914d3db44347dee4e03d5248d54fb..fdfbc3eb9e2e6dada5cf069ab6b8e1d77f67f84a 100644
--- a/pkg/analyzer_plugin/test/integration/support/protocol_matchers.dart
+++ b/pkg/analyzer_plugin/test/integration/support/protocol_matchers.dart
@@ -206,26 +206,6 @@ final Matcher isCompletionSuggestionKind =
]);
/**
- * ContextBuilderOptions
- *
- * {
- * "dartSdkSummaryPath": optional FilePath
- * "defaultAnalysisOptionsFilePath": optional List<FilePath>
- * "declaredVariables": optional Map<String, String>
- * "defaultPackageFilePath": optional List<FilePath>
- * "defaultPackagesDirectoryPath": optional List<FilePath>
- * }
- */
-final Matcher isContextBuilderOptions = new LazyMatcher(
- () => new MatchesJsonObject("ContextBuilderOptions", null, optionalFields: {
- "dartSdkSummaryPath": isFilePath,
- "defaultAnalysisOptionsFilePath": isListOf(isFilePath),
- "declaredVariables": isMapOf(isString, isString),
- "defaultPackageFilePath": isListOf(isFilePath),
- "defaultPackagesDirectoryPath": isListOf(isFilePath)
- }));
-
-/**
* ContextRoot
*
* {
@@ -1025,22 +1005,6 @@ final Matcher isAnalysisReanalyzeParams = new LazyMatcher(() =>
final Matcher isAnalysisReanalyzeResult = isNull;
/**
- * analysis.setContextBuilderOptions params
- *
- * {
- * "options": ContextBuilderOptions
- * }
- */
-final Matcher isAnalysisSetContextBuilderOptionsParams = new LazyMatcher(() =>
- new MatchesJsonObject("analysis.setContextBuilderOptions params",
- {"options": isContextBuilderOptions}));
-
-/**
- * analysis.setContextBuilderOptions result
- */
-final Matcher isAnalysisSetContextBuilderOptionsResult = isNull;
-
-/**
* analysis.setContextRoots params
*
* {

Powered by Google App Engine
This is Rietveld 408576698