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

Side by Side Diff: pkg/analysis_server/doc/api.html

Issue 787603004: Getters should not have parameters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years 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 2291 matching lines...) Expand 10 before | Expand all | Expand 10 after
2302 <li>0x04 - set if the element was declared to be ‘final’</li> 2302 <li>0x04 - set if the element was declared to be ‘final’</li>
2303 <li>0x08 - set if the element is a static member of a class or is a top-level function or field</li> 2303 <li>0x08 - set if the element is a static member of a class or is a top-level function or field</li>
2304 <li>0x10 - set if the element is private</li> 2304 <li>0x10 - set if the element is private</li>
2305 <li>0x20 - set if the element is deprecated</li> 2305 <li>0x20 - set if the element is deprecated</li>
2306 </ul> 2306 </ul>
2307 </dd><dt class="field"><b><i>parameters ( <span style="color:#999999"> optional</span> String )</i></b></dt><dd> 2307 </dd><dt class="field"><b><i>parameters ( <span style="color:#999999"> optional</span> String )</i></b></dt><dd>
2308 2308
2309 <p> 2309 <p>
2310 The parameter list for the element. If the element is not 2310 The parameter list for the element. If the element is not
2311 a method or function this field will not be defined. If 2311 a method or function this field will not be defined. If
2312 the element has zero parameters, this field will have a 2312 the element doesn't have parameters (e.g. getter), this field
2313 value of "()". 2313 will not be defined. If the element has zero parameters, this
2314 field will have a value of "()".
2314 </p> 2315 </p>
2315 </dd><dt class="field"><b><i>returnType ( <span style="color:#999999"> optional</span> String )</i></b></dt><dd> 2316 </dd><dt class="field"><b><i>returnType ( <span style="color:#999999"> optional</span> String )</i></b></dt><dd>
2316 2317
2317 <p> 2318 <p>
2318 The return type of the element. If the element is not a 2319 The return type of the element. If the element is not a
2319 method or function this field will not be defined. If the 2320 method or function this field will not be defined. If the
2320 element does not have a declared return type, this field 2321 element does not have a declared return type, this field
2321 will contain an empty string. 2322 will contain an empty string.
2322 </p> 2323 </p>
2323 </dd></dl></dd><dt class="typeDefinition"><a name="type_ElementKind">E lementKind: String</a></dt><dd> 2324 </dd></dl></dd><dt class="typeDefinition"><a name="type_ElementKind">E lementKind: String</a></dt><dd>
(...skipping 1189 matching lines...) Expand 10 before | Expand all | Expand 10 after
3513 <p> 3514 <p>
3514 This section contains a list of all of the errors that are 3515 This section contains a list of all of the errors that are
3515 produced by the server and the data that is returned with each. 3516 produced by the server and the data that is returned with each.
3516 </p> 3517 </p>
3517 <p> 3518 <p>
3518 TBD 3519 TBD
3519 </p> 3520 </p>
3520 3521
3521 3522
3522 </body></html> 3523 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698