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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 // 4 //
5 // This file has been automatically generated. Please do not edit it manually. 5 // This file has been automatically generated. Please do not edit it manually.
6 // To regenerate the file, use the script 6 // To regenerate the file, use the script
7 // "pkg/analysis_server/tool/spec/generate_files". 7 // "pkg/analysis_server/tool/spec/generate_files".
8 8
9 /** 9 /**
10 * Matchers for data types defined in the analysis server API 10 * Matchers for data types defined in the analysis server API
(...skipping 1428 matching lines...) Expand 10 before | Expand all | Expand 10 after
1439 ]); 1439 ]);
1440 1440
1441 /** 1441 /**
1442 * HoverInformation 1442 * HoverInformation
1443 * 1443 *
1444 * { 1444 * {
1445 * "offset": int 1445 * "offset": int
1446 * "length": int 1446 * "length": int
1447 * "containingLibraryPath": optional String 1447 * "containingLibraryPath": optional String
1448 * "containingLibraryName": optional String 1448 * "containingLibraryName": optional String
1449 * "containingClassDescription": optional String
1449 * "dartdoc": optional String 1450 * "dartdoc": optional String
1450 * "elementDescription": optional String 1451 * "elementDescription": optional String
1451 * "elementKind": optional String 1452 * "elementKind": optional String
1452 * "parameter": optional String 1453 * "parameter": optional String
1453 * "propagatedType": optional String 1454 * "propagatedType": optional String
1454 * "staticType": optional String 1455 * "staticType": optional String
1455 * } 1456 * }
1456 */ 1457 */
1457 final Matcher isHoverInformation = new LazyMatcher(() => new MatchesJsonObject( 1458 final Matcher isHoverInformation = new LazyMatcher(() => new MatchesJsonObject(
1458 "HoverInformation", { 1459 "HoverInformation", {
1459 "offset": isInt, 1460 "offset": isInt,
1460 "length": isInt 1461 "length": isInt
1461 }, optionalFields: { 1462 }, optionalFields: {
1462 "containingLibraryPath": isString, 1463 "containingLibraryPath": isString,
1463 "containingLibraryName": isString, 1464 "containingLibraryName": isString,
1465 "containingClassDescription": isString,
1464 "dartdoc": isString, 1466 "dartdoc": isString,
1465 "elementDescription": isString, 1467 "elementDescription": isString,
1466 "elementKind": isString, 1468 "elementKind": isString,
1467 "parameter": isString, 1469 "parameter": isString,
1468 "propagatedType": isString, 1470 "propagatedType": isString,
1469 "staticType": isString 1471 "staticType": isString
1470 })); 1472 }));
1471 1473
1472 /** 1474 /**
1473 * LinkedEditGroup 1475 * LinkedEditGroup
(...skipping 703 matching lines...) Expand 10 before | Expand all | Expand 10 after
2177 * 2179 *
2178 * { 2180 * {
2179 * "newName": String 2181 * "newName": String
2180 * } 2182 * }
2181 */ 2183 */
2182 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject( 2184 final Matcher isRenameOptions = new LazyMatcher(() => new MatchesJsonObject(
2183 "rename options", { 2185 "rename options", {
2184 "newName": isString 2186 "newName": isString
2185 })); 2187 }));
2186 2188
OLDNEW
« 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