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

Side by Side Diff: pkg/analysis_server/tool/spec/spec_input.html

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/lib/src/generated_protocol.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <meta charset="UTF-8"/> 3 <meta charset="UTF-8"/>
4 <title>Analysis Server API Specification</title> 4 <title>Analysis Server API Specification</title>
5 </head> 5 </head>
6 <body> 6 <body>
7 <h1>Analysis Server API Specification</h1> 7 <h1>Analysis Server API Specification</h1>
8 <h1 style="color:#999999">WORKING DRAFT - Version <version>0.3</version></h1 > 8 <h1 style="color:#999999">WORKING DRAFT - Version <version>0.3</version></h1 >
9 <p> 9 <p>
10 This document contains a specification of the API provided by 10 This document contains a specification of the API provided by
(...skipping 2073 matching lines...) Expand 10 before | Expand all | Expand 10 after
2084 The length of the range of characters that encompases the 2084 The length of the range of characters that encompases the
2085 cursor position and has the same hover information as the 2085 cursor position and has the same hover information as the
2086 cursor position. 2086 cursor position.
2087 </p> 2087 </p>
2088 </field> 2088 </field>
2089 <field name="containingLibraryPath" optional="true"> 2089 <field name="containingLibraryPath" optional="true">
2090 <ref>String</ref> 2090 <ref>String</ref>
2091 <p> 2091 <p>
2092 The path to the defining compilation unit of the library 2092 The path to the defining compilation unit of the library
2093 in which the referenced element is declared. This data is 2093 in which the referenced element is declared. This data is
2094 omitted if there is no referenced element. 2094 omitted if there is no referenced element, or if the
2095 element is declared inside an HTML file.
2095 </p> 2096 </p>
2096 </field> 2097 </field>
2097 <field name="containingLibraryName" optional="true"> 2098 <field name="containingLibraryName" optional="true">
2098 <ref>String</ref> 2099 <ref>String</ref>
2099 <p> 2100 <p>
2100 The name of the library in which the referenced element is 2101 The name of the library in which the referenced element is
2101 declared. This data is omitted if there is no referenced 2102 declared. This data is omitted if there is no referenced
2102 element. 2103 element, or if the element is declared inside an HTML
2104 file.
2103 </p> 2105 </p>
2104 </field> 2106 </field>
2105 <field name="dartdoc" optional="true"> 2107 <field name="dartdoc" optional="true">
2106 <ref>String</ref> 2108 <ref>String</ref>
2107 <p> 2109 <p>
2108 The dartdoc associated with the referenced element. Other 2110 The dartdoc associated with the referenced element. Other
2109 than the removal of the comment delimiters, including 2111 than the removal of the comment delimiters, including
2110 leading asterisks in the case of a block comment, the 2112 leading asterisks in the case of a block comment, the
2111 dartdoc is unprocessed markdown. This data is omitted if 2113 dartdoc is unprocessed markdown. This data is omitted if
2112 there is no referenced element. 2114 there is no referenced element, or if the element has no
2115 dartdoc.
2113 </p> 2116 </p>
2114 </field> 2117 </field>
2115 <field name="elementDescription" optional="true"> 2118 <field name="elementDescription" optional="true">
2116 <ref>String</ref> 2119 <ref>String</ref>
2117 <p> 2120 <p>
2118 A human-readable description of the element being 2121 A human-readable description of the element being
2119 referenced. This data is omitted if there is no referenced 2122 referenced. This data is omitted if there is no referenced
2120 element. 2123 element.
2121 </p> 2124 </p>
2122 </field> 2125 </field>
(...skipping 1065 matching lines...) Expand 10 before | Expand all | Expand 10 after
3188 <h2>Errors</h2> 3191 <h2>Errors</h2>
3189 <p> 3192 <p>
3190 This section contains a list of all of the errors that are 3193 This section contains a list of all of the errors that are
3191 produced by the server and the data that is returned with each. 3194 produced by the server and the data that is returned with each.
3192 </p> 3195 </p>
3193 <p> 3196 <p>
3194 TBD 3197 TBD
3195 </p> 3198 </p>
3196 </body> 3199 </body>
3197 </html> 3200 </html>
OLDNEW
« no previous file with comments | « pkg/analysis_server/lib/src/generated_protocol.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698