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