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

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

Issue 1003193005: Add 'containingClassDescription' to HoverInformation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 9 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 ad98577247f1e0aa5f863e0872affdc57cf618cc..1909ee9ece6a8721ff4064bd43c042259bc35d70 100644
--- a/pkg/analysis_server/test/integration/protocol_matchers.dart
+++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
@@ -1446,6 +1446,7 @@ final Matcher isHighlightRegionType = new MatchesEnum("HighlightRegionType", [
* "length": int
* "containingLibraryPath": optional String
* "containingLibraryName": optional String
+ * "containingClassDescription": optional String
* "dartdoc": optional String
* "elementDescription": optional String
* "elementKind": optional String
@@ -1461,6 +1462,7 @@ final Matcher isHoverInformation = new LazyMatcher(() => new MatchesJsonObject(
}, optionalFields: {
"containingLibraryPath": isString,
"containingLibraryName": isString,
+ "containingClassDescription": isString,
"dartdoc": isString,
"elementDescription": isString,
"elementKind": isString,
« no previous file with comments | « pkg/analysis_server/test/analysis/get_hover_test.dart ('k') | pkg/analysis_server/tool/spec/spec_input.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698