| OLD | NEW |
| 1 | 1 |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <meta charset="UTF-8"/> | 4 <meta charset="UTF-8"/> |
| 5 <title>Analysis Server API Specification</title> | 5 <title>Analysis Server API Specification</title> |
| 6 </head> | 6 </head> |
| 7 <body> | 7 <body> |
| 8 <h1>Analysis Server API Specification</h1> | 8 <h1>Analysis Server API Specification</h1> |
| 9 <h1 style="color:#999999">Version <version>1.3.0</version></h1> | 9 <h1 style="color:#999999">Version <version>1.4.0</version></h1> |
| 10 <p> | 10 <p> |
| 11 This document contains a specification of the API provided by the | 11 This document contains a specification of the API provided by the |
| 12 analysis server. The API in this document is currently under | 12 analysis server. The API in this document is currently under |
| 13 development. Changes to the API will be accompanied by an update to the | 13 development. Changes to the API will be accompanied by an update to the |
| 14 protocol version number according to the principles of semantic | 14 protocol version number according to the principles of semantic |
| 15 versioning <a href="http://semver.org/">http://semver.org/</a>. | 15 versioning <a href="http://semver.org/">http://semver.org/</a>. |
| 16 </p> | 16 </p> |
| 17 <h2>Overview</h2> | 17 <h2>Overview</h2> |
| 18 <p> | 18 <p> |
| 19 The analysis server API is a bi-directional client-server | 19 The analysis server API is a bi-directional client-server |
| (...skipping 2274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2294 </field> | 2294 </field> |
| 2295 <field name="returnType" optional="true"> | 2295 <field name="returnType" optional="true"> |
| 2296 <ref>String</ref> | 2296 <ref>String</ref> |
| 2297 <p> | 2297 <p> |
| 2298 The return type of the element. If the element is not a | 2298 The return type of the element. If the element is not a |
| 2299 method or function this field will not be defined. If the | 2299 method or function this field will not be defined. If the |
| 2300 element does not have a declared return type, this field | 2300 element does not have a declared return type, this field |
| 2301 will contain an empty string. | 2301 will contain an empty string. |
| 2302 </p> | 2302 </p> |
| 2303 </field> | 2303 </field> |
| 2304 <field name="typeParameters" optional="true"> |
| 2305 <ref>String</ref> |
| 2306 <p> |
| 2307 The type parameter list for the element. If the element doesn't |
| 2308 have type parameters, this field will not be defined. |
| 2309 </p> |
| 2310 </field> |
| 2304 </object> | 2311 </object> |
| 2305 </type> | 2312 </type> |
| 2306 <type name="ElementKind"> | 2313 <type name="ElementKind"> |
| 2307 <p> | 2314 <p> |
| 2308 An enumeration of the kinds of elements. | 2315 An enumeration of the kinds of elements. |
| 2309 </p> | 2316 </p> |
| 2310 <enum> | 2317 <enum> |
| 2311 <value><code>CLASS</code></value> | 2318 <value><code>CLASS</code></value> |
| 2312 <value><code>CLASS_TYPE_ALIAS</code></value> | 2319 <value><code>CLASS_TYPE_ALIAS</code></value> |
| 2313 <value><code>COMPILATION_UNIT</code></value> | 2320 <value><code>COMPILATION_UNIT</code></value> |
| (...skipping 1541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3855 <h2>Errors</h2> | 3862 <h2>Errors</h2> |
| 3856 <p> | 3863 <p> |
| 3857 This section contains a list of all of the errors that are | 3864 This section contains a list of all of the errors that are |
| 3858 produced by the server and the data that is returned with each. | 3865 produced by the server and the data that is returned with each. |
| 3859 </p> | 3866 </p> |
| 3860 <p> | 3867 <p> |
| 3861 TBD | 3868 TBD |
| 3862 </p> | 3869 </p> |
| 3863 </body> | 3870 </body> |
| 3864 </html> | 3871 </html> |
| OLD | NEW |