| OLD | NEW |
| 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 1860 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1871 </p> | 1871 </p> |
| 1872 </field> | 1872 </field> |
| 1873 </object> | 1873 </object> |
| 1874 </type> | 1874 </type> |
| 1875 <type name="CompletionSuggestionKind"> | 1875 <type name="CompletionSuggestionKind"> |
| 1876 <p> | 1876 <p> |
| 1877 An enumeration of the kinds of elements that can be included | 1877 An enumeration of the kinds of elements that can be included |
| 1878 in a completion suggestion. | 1878 in a completion suggestion. |
| 1879 </p> | 1879 </p> |
| 1880 <enum> | 1880 <enum> |
| 1881 <value><code>ARGUMENT_LIST</code></value> | 1881 <value> |
| 1882 <code>ARGUMENT_LIST</code> |
| 1883 <p> |
| 1884 A list of arguments for the method or function that is being invok
ed. |
| 1885 For this suggestion kind, the completion field is a textual repres
entation |
| 1886 of the invocation and the parameterNames, parameterTypes, and requ
iredParameterCount |
| 1887 attributes are defined. |
| 1888 </p> |
| 1889 </value> |
| 1882 <value><code>IMPORT</code></value> | 1890 <value><code>IMPORT</code></value> |
| 1883 <value> | 1891 <value> |
| 1884 <code>IDENTIFIER</code> | 1892 <code>IDENTIFIER</code> |
| 1885 <p> | 1893 <p> |
| 1886 The element identifier should be inserted at the completion locati
on. | 1894 The element identifier should be inserted at the completion locati
on. |
| 1887 For example "someMethod" in import 'myLib.dart' show someMethod; . | 1895 For example "someMethod" in import 'myLib.dart' show someMethod; . |
| 1888 For suggestions of this kind, the element attribute is defined | 1896 For suggestions of this kind, the element attribute is defined |
| 1889 and the completion field is the element's identifier. | 1897 and the completion field is the element's identifier. |
| 1890 </p> | 1898 </p> |
| 1891 </value> | 1899 </value> |
| (...skipping 1530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3422 <h2>Errors</h2> | 3430 <h2>Errors</h2> |
| 3423 <p> | 3431 <p> |
| 3424 This section contains a list of all of the errors that are | 3432 This section contains a list of all of the errors that are |
| 3425 produced by the server and the data that is returned with each. | 3433 produced by the server and the data that is returned with each. |
| 3426 </p> | 3434 </p> |
| 3427 <p> | 3435 <p> |
| 3428 TBD | 3436 TBD |
| 3429 </p> | 3437 </p> |
| 3430 </body> | 3438 </body> |
| 3431 </html> | 3439 </html> |
| OLD | NEW |