| OLD | NEW |
| 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 Loading... |
| 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">CLASS</dt><dt cl
ass="value">CLASS_ALIAS</dt><dt class="value">CONSTRUCTOR</dt><dt class="value">
FIELD</dt><dt class="value">FUNCTION</dt><dt class="value">FUNCTION_TYPE_ALIAS</
dt><dt class="value">GETTER</dt><dt class="value">IMPORT</dt><dt class="value">K
EYWORD</dt><dt class="value">LABEL</dt><dt class="value">LIBRARY_PREFIX</dt><dt
class="value">LOCAL_VARIABLE</dt><dt class="value">METHOD</dt><dt class="value">
METHOD_NAME</dt><dt class="value">NAMED_ARGUMENT</dt><dt class="value">OPTIONAL_
ARGUMENT</dt><dt class="value">PARAMETER</dt><dt class="value">SETTER</dt><dt cl
ass="value">TOP_LEVEL_VARIABLE</dt><dt class="value">TYPE_PARAMETER</dt></dl></d
d><dt class="typeDefinition"><a name="type_Element">Element: object</a></dt><dd> | 2109 <dl><dt class="value">ARGUMENT_LIST</dt><dt class="value">IMPORT</dt><dt c
lass="value">IDENTIFIER</dt><dd> |
| 2110 |
| 2111 <p> |
| 2112 The element identifier should be inserted at the completion locati
on. |
| 2113 For example "someMethod" in import 'myLib.dart' show someMethod; . |
| 2114 For suggestions of this kind, the element attribute is defined |
| 2115 and the completion field is the element's identifier. |
| 2116 </p> |
| 2117 </dd><dt class="value">INVOCATION</dt><dd> |
| 2118 |
| 2119 <p> |
| 2120 The element is being invoked at the completion location. |
| 2121 For example, "someMethod" in x.someMethod(); . |
| 2122 For suggestions of this kind, the element attribute is defined |
| 2123 and the completion field is the element's identifier. |
| 2124 </p> |
| 2125 </dd><dt class="value">KEYWORD</dt><dd> |
| 2126 |
| 2127 <p> |
| 2128 A keyword is being suggested. |
| 2129 For suggestions of this kind, the completion is the keyword. |
| 2130 </p> |
| 2131 </dd><dt class="value">NAMED_ARGUMENT</dt><dt class="value">OPTIONAL_A
RGUMENT</dt><dt class="value">PARAMETER</dt></dl></dd><dt class="typeDefinition"
><a name="type_Element">Element: object</a></dt><dd> |
| 2110 <p> | 2132 <p> |
| 2111 Information about an element (something that can be declared | 2133 Information about an element (something that can be declared |
| 2112 in code). | 2134 in code). |
| 2113 </p> | 2135 </p> |
| 2114 | 2136 |
| 2115 <dl><dt class="field"><b><i>kind ( <a href="#type_ElementKind">ElementKind
</a> )</i></b></dt><dd> | 2137 <dl><dt class="field"><b><i>kind ( <a href="#type_ElementKind">ElementKind
</a> )</i></b></dt><dd> |
| 2116 | 2138 |
| 2117 <p> | 2139 <p> |
| 2118 The kind of the element. | 2140 The kind of the element. |
| 2119 </p> | 2141 </p> |
| (...skipping 1186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3306 <p> | 3328 <p> |
| 3307 This section contains a list of all of the errors that are | 3329 This section contains a list of all of the errors that are |
| 3308 produced by the server and the data that is returned with each. | 3330 produced by the server and the data that is returned with each. |
| 3309 </p> | 3331 </p> |
| 3310 <p> | 3332 <p> |
| 3311 TBD | 3333 TBD |
| 3312 </p> | 3334 </p> |
| 3313 | 3335 |
| 3314 | 3336 |
| 3315 </body></html> | 3337 </body></html> |
| OLD | NEW |