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

Side by Side Diff: pkg/analysis_server/tool/spec/spec_input.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: 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> 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 1957 matching lines...) Expand 10 before | Expand all | Expand 10 after
1968 </p> 1968 </p>
1969 </field> 1969 </field>
1970 <field name="requiredParameterCount" optional="true"> 1970 <field name="requiredParameterCount" optional="true">
1971 <ref>int</ref> 1971 <ref>int</ref>
1972 <p> 1972 <p>
1973 The number of required parameters for the function or 1973 The number of required parameters for the function or
1974 method being suggested. This field is omitted if the 1974 method being suggested. This field is omitted if the
1975 parameterNames field is omitted. 1975 parameterNames field is omitted.
1976 </p> 1976 </p>
1977 </field> 1977 </field>
1978 <field name="positionalParameterCount" optional="true"> 1978 <field name="hasNamedParameters" optional="true">
1979 <ref>int</ref> 1979 <ref>bool</ref>
1980 <p> 1980 <p>
1981 The number of positional parameters for the function or 1981 True if the function or method being suggested has at
1982 method being suggested. This field is omitted if the 1982 least one named parameter. This field is omitted if the
1983 parameterNames field is omitted. 1983 parameterNames field is omitted.
1984 </p> 1984 </p>
1985 </field> 1985 </field>
1986 <field name="parameterName" optional="true"> 1986 <field name="parameterName" optional="true">
1987 <ref>String</ref> 1987 <ref>String</ref>
1988 <p> 1988 <p>
1989 The name of the optional parameter being suggested. This 1989 The name of the optional parameter being suggested. This
1990 field is omitted if the suggestion is not the addition of 1990 field is omitted if the suggestion is not the addition of
1991 an optional argument within an argument list. 1991 an optional argument within an argument list.
1992 </p> 1992 </p>
(...skipping 1634 matching lines...) Expand 10 before | Expand all | Expand 10 after
3627 <h2>Errors</h2> 3627 <h2>Errors</h2>
3628 <p> 3628 <p>
3629 This section contains a list of all of the errors that are 3629 This section contains a list of all of the errors that are
3630 produced by the server and the data that is returned with each. 3630 produced by the server and the data that is returned with each.
3631 </p> 3631 </p>
3632 <p> 3632 <p>
3633 TBD 3633 TBD
3634 </p> 3634 </p>
3635 </body> 3635 </body>
3636 </html> 3636 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698