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 349e3f2700f9f45be7606b6f0ff7cba626f49aad..dfef91e16d1fd8df7998d9c0f76556dacedfc009 100644 |
--- a/pkg/analysis_server/test/integration/protocol_matchers.dart |
+++ b/pkg/analysis_server/test/integration/protocol_matchers.dart |
@@ -629,12 +629,15 @@ final Matcher isSearchFindTopLevelDeclarationsResult = new LazyMatcher(() => new |
* { |
* "file": FilePath |
* "offset": int |
+ * "superOnly": optional bool |
* } |
*/ |
final Matcher isSearchGetTypeHierarchyParams = new LazyMatcher(() => new MatchesJsonObject( |
"search.getTypeHierarchy params", { |
"file": isFilePath, |
"offset": isInt |
+ }, optionalFields: { |
+ "superOnly": isBool |
})); |
/** |