| 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 8956f99f47da6f1568bd3c469c89d44511ee73a8..44207a0cd48452e6b3f65c8569262521bb3a51b3 100644
|
| --- a/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| +++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| @@ -1767,12 +1767,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)
|
| }));
|
|
|
|
|