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

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

Issue 837793003: Include required parameter names when completing a method call. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments Created 5 years, 11 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 2202 matching lines...) Expand 10 before | Expand all | Expand 10 after
2213 being suggested. This field is omitted if the 2213 being suggested. This field is omitted if the
2214 parameterNames field is omitted. 2214 parameterNames field is omitted.
2215 </p> 2215 </p>
2216 </dd><dt class="field"><b><i>requiredParameterCount ( <span style="col or:#999999">optional</span> int )</i></b></dt><dd> 2216 </dd><dt class="field"><b><i>requiredParameterCount ( <span style="col or:#999999">optional</span> int )</i></b></dt><dd>
2217 2217
2218 <p> 2218 <p>
2219 The number of required parameters for the function or 2219 The number of required parameters for the function or
2220 method being suggested. This field is omitted if the 2220 method being suggested. This field is omitted if the
2221 parameterNames field is omitted. 2221 parameterNames field is omitted.
2222 </p> 2222 </p>
2223 </dd><dt class="field"><b><i>positionalParameterCount ( <span style="c olor:#999999">optional</span> int )</i></b></dt><dd> 2223 </dd><dt class="field"><b><i>hasNamedParameters ( <span style="color:# 999999">optional</span> bool )</i></b></dt><dd>
2224 2224
2225 <p> 2225 <p>
2226 The number of positional parameters for the function or 2226 True if the function or method being suggested has at
2227 method being suggested. This field is omitted if the 2227 least one named parameter. This field is omitted if the
2228 parameterNames field is omitted. 2228 parameterNames field is omitted.
2229 </p> 2229 </p>
2230 </dd><dt class="field"><b><i>parameterName ( <span style="color:#99999 9">optional</span> String )</i></b></dt><dd> 2230 </dd><dt class="field"><b><i>parameterName ( <span style="color:#99999 9">optional</span> String )</i></b></dt><dd>
2231 2231
2232 <p> 2232 <p>
2233 The name of the optional parameter being suggested. This 2233 The name of the optional parameter being suggested. This
2234 field is omitted if the suggestion is not the addition of 2234 field is omitted if the suggestion is not the addition of
2235 an optional argument within an argument list. 2235 an optional argument within an argument list.
2236 </p> 2236 </p>
2237 </dd><dt class="field"><b><i>parameterType ( <span style="color:#99999 9">optional</span> String )</i></b></dt><dd> 2237 </dd><dt class="field"><b><i>parameterType ( <span style="color:#99999 9">optional</span> String )</i></b></dt><dd>
(...skipping 1295 matching lines...) Expand 10 before | Expand all | Expand 10 after
3533 <p> 3533 <p>
3534 This section contains a list of all of the errors that are 3534 This section contains a list of all of the errors that are
3535 produced by the server and the data that is returned with each. 3535 produced by the server and the data that is returned with each.
3536 </p> 3536 </p>
3537 <p> 3537 <p>
3538 TBD 3538 TBD
3539 </p> 3539 </p>
3540 3540
3541 3541
3542 </body></html> 3542 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698