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 42d9ee981c4c290e9a8ac96b2f00de2e7e2355c4..60515ea100f7dd3bdb919ddb5fdfce7fb2afb204 100644 |
--- a/pkg/analysis_server/test/integration/protocol_matchers.dart |
+++ b/pkg/analysis_server/test/integration/protocol_matchers.dart |
@@ -643,6 +643,7 @@ final Matcher isSearchResultsParams = new LazyMatcher(() => new MatchesJsonObjec |
* "file": FilePath |
* "selectionOffset": int |
* "selectionLength": int |
+ * "lineLength": optional int |
* } |
*/ |
final Matcher isEditFormatParams = new LazyMatcher(() => new MatchesJsonObject( |
@@ -650,6 +651,8 @@ final Matcher isEditFormatParams = new LazyMatcher(() => new MatchesJsonObject( |
"file": isFilePath, |
"selectionOffset": isInt, |
"selectionLength": isInt |
+ }, optionalFields: { |
+ "lineLength": isInt |
})); |
/** |