Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Unified Diff: pkg/analysis_server/test/integration/protocol_matchers.dart

Issue 2310153002: Issue 27244. Add 'isDeprecated' to HoverInformation. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 1443aa0b076297c9261e88b5a624f3e4d6187fa7..5c8e84a6ac3bf38b5eb16d996d2f96116f4576a7 100644
--- a/pkg/analysis_server/test/integration/protocol_matchers.dart
+++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
@@ -1701,6 +1701,7 @@ final Matcher isHighlightRegionType = new MatchesEnum("HighlightRegionType", [
* "dartdoc": optional String
* "elementDescription": optional String
* "elementKind": optional String
+ * "isDeprecated": optional bool
* "parameter": optional String
* "propagatedType": optional String
* "staticType": optional String
@@ -1717,6 +1718,7 @@ final Matcher isHoverInformation = new LazyMatcher(() => new MatchesJsonObject(
"dartdoc": isString,
"elementDescription": isString,
"elementKind": isString,
+ "isDeprecated": isBool,
"parameter": isString,
"propagatedType": isString,
"staticType": isString

Powered by Google App Engine
This is Rietveld 408576698