| 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 f9cbc014b0d7f63073b0b02ea8bad4fd6946c6e4..75d3d35984da880a686cd61bd50f02fa675724ef 100644
|
| --- a/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| +++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
|
| @@ -600,6 +600,38 @@ final Matcher isSearchResultsParams = new LazyMatcher(() => new MatchesJsonObjec
|
| }));
|
|
|
| /**
|
| + * edit.format params
|
| + *
|
| + * {
|
| + * "file": FilePath
|
| + * "selectionOffset": int
|
| + * "selectionLength": int
|
| + * }
|
| + */
|
| +final Matcher isEditFormatParams = new LazyMatcher(() => new MatchesJsonObject(
|
| + "edit.format params", {
|
| + "file": isFilePath,
|
| + "selectionOffset": isInt,
|
| + "selectionLength": isInt
|
| + }));
|
| +
|
| +/**
|
| + * edit.format result
|
| + *
|
| + * {
|
| + * "edits": List<SourceEdit>
|
| + * "selectionOffset": int
|
| + * "selectionLength": int
|
| + * }
|
| + */
|
| +final Matcher isEditFormatResult = new LazyMatcher(() => new MatchesJsonObject(
|
| + "edit.format result", {
|
| + "edits": isListOf(isSourceEdit),
|
| + "selectionOffset": isInt,
|
| + "selectionLength": isInt
|
| + }));
|
| +
|
| +/**
|
| * edit.getAssists params
|
| *
|
| * {
|
|
|