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 711533003: first cut argument list completion suggestions (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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 2088 matching lines...) Expand 10 before | Expand all | Expand 10 after
2099 <p> 2099 <p>
2100 The type of the options parameter being suggested. This 2100 The type of the options parameter being suggested. This
2101 field is omitted if the parameterName field is omitted. 2101 field is omitted if the parameterName field is omitted.
2102 </p> 2102 </p>
2103 </dd></dl></dd><dt class="typeDefinition"><a name="type_CompletionSugg estionKind">CompletionSuggestionKind: String</a></dt><dd> 2103 </dd></dl></dd><dt class="typeDefinition"><a name="type_CompletionSugg estionKind">CompletionSuggestionKind: String</a></dt><dd>
2104 <p> 2104 <p>
2105 An enumeration of the kinds of elements that can be included 2105 An enumeration of the kinds of elements that can be included
2106 in a completion suggestion. 2106 in a completion suggestion.
2107 </p> 2107 </p>
2108 2108
2109 <dl><dt class="value">ARGUMENT_LIST</dt><dt class="value">IMPORT</dt><dt c lass="value">IDENTIFIER</dt><dd> 2109 <dl><dt class="value">ARGUMENT_LIST</dt><dd>
2110
2111 <p>
2112 A list of arguments for the method or function that is being invok ed.
2113 For this suggestion kind, the completion field is a textual repres entation
2114 of the invocation and the parameterNames, parameterTypes, and requ iredParameterCount
2115 attributes are defined.
2116 </p>
2117 </dd><dt class="value">IMPORT</dt><dt class="value">IDENTIFIER</dt><dd >
2110 2118
2111 <p> 2119 <p>
2112 The element identifier should be inserted at the completion locati on. 2120 The element identifier should be inserted at the completion locati on.
2113 For example "someMethod" in import 'myLib.dart' show someMethod; . 2121 For example "someMethod" in import 'myLib.dart' show someMethod; .
2114 For suggestions of this kind, the element attribute is defined 2122 For suggestions of this kind, the element attribute is defined
2115 and the completion field is the element's identifier. 2123 and the completion field is the element's identifier.
2116 </p> 2124 </p>
2117 </dd><dt class="value">INVOCATION</dt><dd> 2125 </dd><dt class="value">INVOCATION</dt><dd>
2118 2126
2119 <p> 2127 <p>
(...skipping 1208 matching lines...) Expand 10 before | Expand all | Expand 10 after
3328 <p> 3336 <p>
3329 This section contains a list of all of the errors that are 3337 This section contains a list of all of the errors that are
3330 produced by the server and the data that is returned with each. 3338 produced by the server and the data that is returned with each.
3331 </p> 3339 </p>
3332 <p> 3340 <p>
3333 TBD 3341 TBD
3334 </p> 3342 </p>
3335 3343
3336 3344
3337 </body></html> 3345 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698