| 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 4d2bc54e0cef3a4281d8c21f5e4b40cb1c2823b9..b65dc4ee8f8605d1d0d495475639ca185f766aa8 100644
|
| --- a/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| +++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| @@ -468,13 +468,17 @@ final Matcher isAnalysisOccurrencesParams = new LazyMatcher(() => new MatchesJso
|
| *
|
| * {
|
| * "file": FilePath
|
| + * "libraryName": String
|
| * "outline": Outline
|
| + * "partOfLibraryName": String
|
| * }
|
| */
|
| final Matcher isAnalysisOutlineParams = new LazyMatcher(() => new MatchesJsonObject(
|
| "analysis.outline params", {
|
| "file": isFilePath,
|
| - "outline": isOutline
|
| + "libraryName": isString,
|
| + "outline": isOutline,
|
| + "partOfLibraryName": isString
|
| }));
|
|
|
| /**
|
|
|