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

Side by Side Diff: pkg/analysis_server/lib/src/generated_protocol.dart

Issue 528303002: Document all the cases where HoverInformation fields can be absent. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/analysis_server/doc/api.html ('k') | pkg/analysis_server/tool/spec/spec_input.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/spec/generate_files". 7 // "pkg/analysis_server/spec/generate_files".
8 8
9 part of protocol; 9 part of protocol;
10 /** 10 /**
(...skipping 6439 matching lines...) Expand 10 before | Expand all | Expand 10 after
6450 6450
6451 /** 6451 /**
6452 * The length of the range of characters that encompases the cursor position 6452 * The length of the range of characters that encompases the cursor position
6453 * and has the same hover information as the cursor position. 6453 * and has the same hover information as the cursor position.
6454 */ 6454 */
6455 int length; 6455 int length;
6456 6456
6457 /** 6457 /**
6458 * The path to the defining compilation unit of the library in which the 6458 * The path to the defining compilation unit of the library in which the
6459 * referenced element is declared. This data is omitted if there is no 6459 * referenced element is declared. This data is omitted if there is no
6460 * referenced element. 6460 * referenced element, or if the element is declared inside an HTML file.
6461 */ 6461 */
6462 String containingLibraryPath; 6462 String containingLibraryPath;
6463 6463
6464 /** 6464 /**
6465 * The name of the library in which the referenced element is declared. This 6465 * The name of the library in which the referenced element is declared. This
6466 * data is omitted if there is no referenced element. 6466 * data is omitted if there is no referenced element, or if the element is
6467 * declared inside an HTML file.
6467 */ 6468 */
6468 String containingLibraryName; 6469 String containingLibraryName;
6469 6470
6470 /** 6471 /**
6471 * The dartdoc associated with the referenced element. Other than the removal 6472 * The dartdoc associated with the referenced element. Other than the removal
6472 * of the comment delimiters, including leading asterisks in the case of a 6473 * of the comment delimiters, including leading asterisks in the case of a
6473 * block comment, the dartdoc is unprocessed markdown. This data is omitted 6474 * block comment, the dartdoc is unprocessed markdown. This data is omitted
6474 * if there is no referenced element. 6475 * if there is no referenced element, or if the element has no dartdoc.
6475 */ 6476 */
6476 String dartdoc; 6477 String dartdoc;
6477 6478
6478 /** 6479 /**
6479 * A human-readable description of the element being referenced. This data is 6480 * A human-readable description of the element being referenced. This data is
6480 * omitted if there is no referenced element. 6481 * omitted if there is no referenced element.
6481 */ 6482 */
6482 String elementDescription; 6483 String elementDescription;
6483 6484
6484 /** 6485 /**
(...skipping 3278 matching lines...) Expand 10 before | Expand all | Expand 10 after
9763 return false; 9764 return false;
9764 } 9765 }
9765 9766
9766 @override 9767 @override
9767 int get hashCode { 9768 int get hashCode {
9768 int hash = 0; 9769 int hash = 0;
9769 hash = _JenkinsSmiHash.combine(hash, newName.hashCode); 9770 hash = _JenkinsSmiHash.combine(hash, newName.hashCode);
9770 return _JenkinsSmiHash.finish(hash); 9771 return _JenkinsSmiHash.finish(hash);
9771 } 9772 }
9772 } 9773 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/doc/api.html ('k') | pkg/analysis_server/tool/spec/spec_input.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698