| 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
|
| *
|
| * {
|
|
|