| 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 ee6e0d67676a8c2cd855ceb3db1e6d67114e118a..f5e0c0c0abe71d8a8a730bef37b1380ab0bd27a4 100644
|
| --- a/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| +++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| @@ -1771,12 +1771,14 @@ final Matcher isSourceEdit = new LazyMatcher(() => new MatchesJsonObject(
|
| *
|
| * {
|
| * "file": FilePath
|
| + * "fileStamp": long
|
| * "edits": List<SourceEdit>
|
| * }
|
| */
|
| final Matcher isSourceFileEdit = new LazyMatcher(() => new MatchesJsonObject(
|
| "SourceFileEdit", {
|
| "file": isFilePath,
|
| + "fileStamp": isInt,
|
| "edits": isListOf(isSourceEdit)
|
| }));
|
|
|
|
|