| 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 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 </p> | 241 </p> |
| 242 <params> | 242 <params> |
| 243 <field name="analysis" optional="true"> | 243 <field name="analysis" optional="true"> |
| 244 <ref>AnalysisStatus</ref> | 244 <ref>AnalysisStatus</ref> |
| 245 <p> | 245 <p> |
| 246 The current status of analysis, including whether | 246 The current status of analysis, including whether |
| 247 analysis is being performed and if so what is being | 247 analysis is being performed and if so what is being |
| 248 analyzed. | 248 analyzed. |
| 249 </p> | 249 </p> |
| 250 </field> | 250 </field> |
| 251 <field name="pub" optional="true"> |
| 252 <ref>PubStatus</ref> |
| 253 <p> |
| 254 The current status of pub execution, indicating whether we are |
| 255 currently running pub. |
| 256 </p> |
| 257 </field> |
| 251 </params> | 258 </params> |
| 252 </notification> | 259 </notification> |
| 253 </domain> | 260 </domain> |
| 254 <domain name="analysis"> | 261 <domain name="analysis"> |
| 255 <p> | 262 <p> |
| 256 The analysis domain contains API’s related to the analysis of | 263 The analysis domain contains API’s related to the analysis of |
| 257 files. | 264 files. |
| 258 </p> | 265 </p> |
| 259 <request method="getErrors"> | 266 <request method="getErrors"> |
| 260 <p> | 267 <p> |
| (...skipping 2430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2691 </p> | 2698 </p> |
| 2692 </field> | 2699 </field> |
| 2693 <field name="offset"> | 2700 <field name="offset"> |
| 2694 <ref>int</ref> | 2701 <ref>int</ref> |
| 2695 <p> | 2702 <p> |
| 2696 The offset of the position. | 2703 The offset of the position. |
| 2697 </p> | 2704 </p> |
| 2698 </field> | 2705 </field> |
| 2699 </object> | 2706 </object> |
| 2700 </type> | 2707 </type> |
| 2708 <type name="PubStatus"> |
| 2709 <p> |
| 2710 An indication of the current state of pub execution. |
| 2711 </p> |
| 2712 <object> |
| 2713 <field name="isListingPackageDirs"> |
| 2714 <ref>bool</ref> |
| 2715 <p> |
| 2716 True if the server is currently running pub to produce a list of |
| 2717 package directories. |
| 2718 </p> |
| 2719 </field> |
| 2720 </object> |
| 2721 </type> |
| 2701 <type name="RefactoringKind"> | 2722 <type name="RefactoringKind"> |
| 2702 <p> | 2723 <p> |
| 2703 An enumeration of the kinds of refactorings that can be | 2724 An enumeration of the kinds of refactorings that can be |
| 2704 created. | 2725 created. |
| 2705 </p> | 2726 </p> |
| 2706 <enum> | 2727 <enum> |
| 2707 <value><code>CONVERT_GETTER_TO_METHOD</code></value> | 2728 <value><code>CONVERT_GETTER_TO_METHOD</code></value> |
| 2708 <value><code>CONVERT_METHOD_TO_GETTER</code></value> | 2729 <value><code>CONVERT_METHOD_TO_GETTER</code></value> |
| 2709 <value><code>EXTRACT_LOCAL_VARIABLE</code></value> | 2730 <value><code>EXTRACT_LOCAL_VARIABLE</code></value> |
| 2710 <value><code>EXTRACT_METHOD</code></value> | 2731 <value><code>EXTRACT_METHOD</code></value> |
| (...skipping 895 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3606 <h2>Errors</h2> | 3627 <h2>Errors</h2> |
| 3607 <p> | 3628 <p> |
| 3608 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 |
| 3609 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. |
| 3610 </p> | 3631 </p> |
| 3611 <p> | 3632 <p> |
| 3612 TBD | 3633 TBD |
| 3613 </p> | 3634 </p> |
| 3614 </body> | 3635 </body> |
| 3615 </html> | 3636 </html> |
| OLD | NEW |