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

Side by Side Diff: pkg/analysis_server/doc/api.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
OLDNEW
1 <html><head> 1 <html><head>
2 <meta charset="UTF-8"> 2 <meta charset="UTF-8">
3 <title>Analysis Server API Specification</title> 3 <title>Analysis Server API Specification</title>
4 <style>body { 4 <style>body {
5 font-family: sans-serif, serif; 5 font-family: sans-serif, serif;
6 padding-left: 5%; 6 padding-left: 5%;
7 padding-right: 5%; 7 padding-right: 5%;
8 } 8 }
9 h1 { 9 h1 {
10 text-align: center; 10 text-align: center;
(...skipping 2168 matching lines...) Expand 10 before | Expand all | Expand 10 after
2179 <p> 2179 <p>
2180 The length of the range of characters that encompases the 2180 The length of the range of characters that encompases the
2181 cursor position and has the same hover information as the 2181 cursor position and has the same hover information as the
2182 cursor position. 2182 cursor position.
2183 </p> 2183 </p>
2184 </dd><dt class="field"><b><i>containingLibraryPath ( <span style="colo r:#999999">optional</span> String )</i></b></dt><dd> 2184 </dd><dt class="field"><b><i>containingLibraryPath ( <span style="colo r:#999999">optional</span> String )</i></b></dt><dd>
2185 2185
2186 <p> 2186 <p>
2187 The path to the defining compilation unit of the library 2187 The path to the defining compilation unit of the library
2188 in which the referenced element is declared. This data is 2188 in which the referenced element is declared. This data is
2189 omitted if there is no referenced element. 2189 omitted if there is no referenced element, or if the
2190 element is declared inside an HTML file.
2190 </p> 2191 </p>
2191 </dd><dt class="field"><b><i>containingLibraryName ( <span style="colo r:#999999">optional</span> String )</i></b></dt><dd> 2192 </dd><dt class="field"><b><i>containingLibraryName ( <span style="colo r:#999999">optional</span> String )</i></b></dt><dd>
2192 2193
2193 <p> 2194 <p>
2194 The name of the library in which the referenced element is 2195 The name of the library in which the referenced element is
2195 declared. This data is omitted if there is no referenced 2196 declared. This data is omitted if there is no referenced
2196 element. 2197 element, or if the element is declared inside an HTML
2198 file.
2197 </p> 2199 </p>
2198 </dd><dt class="field"><b><i>dartdoc ( <span style="color:#999999">opt ional</span> String )</i></b></dt><dd> 2200 </dd><dt class="field"><b><i>dartdoc ( <span style="color:#999999">opt ional</span> String )</i></b></dt><dd>
2199 2201
2200 <p> 2202 <p>
2201 The dartdoc associated with the referenced element. Other 2203 The dartdoc associated with the referenced element. Other
2202 than the removal of the comment delimiters, including 2204 than the removal of the comment delimiters, including
2203 leading asterisks in the case of a block comment, the 2205 leading asterisks in the case of a block comment, the
2204 dartdoc is unprocessed markdown. This data is omitted if 2206 dartdoc is unprocessed markdown. This data is omitted if
2205 there is no referenced element. 2207 there is no referenced element, or if the element has no
2208 dartdoc.
2206 </p> 2209 </p>
2207 </dd><dt class="field"><b><i>elementDescription ( <span style="color:# 999999">optional</span> String )</i></b></dt><dd> 2210 </dd><dt class="field"><b><i>elementDescription ( <span style="color:# 999999">optional</span> String )</i></b></dt><dd>
2208 2211
2209 <p> 2212 <p>
2210 A human-readable description of the element being 2213 A human-readable description of the element being
2211 referenced. This data is omitted if there is no referenced 2214 referenced. This data is omitted if there is no referenced
2212 element. 2215 element.
2213 </p> 2216 </p>
2214 </dd><dt class="field"><b><i>elementKind ( <span style="color:#999999" >optional</span> String )</i></b></dt><dd> 2217 </dd><dt class="field"><b><i>elementKind ( <span style="color:#999999" >optional</span> String )</i></b></dt><dd>
2215 2218
(...skipping 879 matching lines...) Expand 10 before | Expand all | Expand 10 after
3095 <p> 3098 <p>
3096 This section contains a list of all of the errors that are 3099 This section contains a list of all of the errors that are
3097 produced by the server and the data that is returned with each. 3100 produced by the server and the data that is returned with each.
3098 </p> 3101 </p>
3099 <p> 3102 <p>
3100 TBD 3103 TBD
3101 </p> 3104 </p>
3102 3105
3103 3106
3104 </body></html> 3107 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698