Chromium Code Reviews| 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 1267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1278 not known to be valid if there was insufficient type information | 1278 not known to be valid if there was insufficient type information |
| 1279 for the server to be able to determine whether or not the code | 1279 for the server to be able to determine whether or not the code |
| 1280 needs to be modified, such as when a member is being renamed and | 1280 needs to be modified, such as when a member is being renamed and |
| 1281 there is a reference to a member from an unknown type. This field | 1281 there is a reference to a member from an unknown type. This field |
| 1282 will be omitted if the change field is omitted or if there are no | 1282 will be omitted if the change field is omitted or if there are no |
| 1283 potential edits for the refactoring. | 1283 potential edits for the refactoring. |
| 1284 </p> | 1284 </p> |
| 1285 </field> | 1285 </field> |
| 1286 </result> | 1286 </result> |
| 1287 </request> | 1287 </request> |
| 1288 <request method="sortMembers"> | |
| 1289 <p> | |
| 1290 Sort all of the directives, unit and class members | |
| 1291 of the given Dart file. | |
| 1292 </p> | |
|
Paul Berry
2014/09/26 16:23:53
Do we need to include documentation of what happen
scheglov
2014/09/26 16:44:43
https://codereview.chromium.org/604333002
| |
| 1293 <params> | |
| 1294 <field name="file"> | |
| 1295 <ref>FilePath</ref> | |
| 1296 <p> | |
| 1297 The Dart file to sort. | |
| 1298 </p> | |
| 1299 </field> | |
| 1300 </params> | |
| 1301 <result> | |
| 1302 <field name="edit"> | |
| 1303 <ref>SourceFileEdit</ref> | |
| 1304 <p> | |
| 1305 The file edit that is to be applied to the given file to effect | |
| 1306 the sorting. | |
| 1307 </p> | |
| 1308 </field> | |
| 1309 </result> | |
| 1310 </request> | |
| 1288 </domain> | 1311 </domain> |
| 1289 <domain name="execution"> | 1312 <domain name="execution"> |
| 1290 <p> | 1313 <p> |
| 1291 The execution domain contains commands related to providing an execution | 1314 The execution domain contains commands related to providing an execution |
| 1292 or debugging experience. | 1315 or debugging experience. |
| 1293 </p> | 1316 </p> |
| 1294 <request method="createContext"> | 1317 <request method="createContext"> |
| 1295 <p> | 1318 <p> |
| 1296 Create an execution context for the executable file with the given | 1319 Create an execution context for the executable file with the given |
| 1297 path. The context that is created will persist until | 1320 path. The context that is created will persist until |
| (...skipping 2030 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3328 <options> | 3351 <options> |
| 3329 <field name="newName"> | 3352 <field name="newName"> |
| 3330 <ref>String</ref> | 3353 <ref>String</ref> |
| 3331 <p> | 3354 <p> |
| 3332 The name that the element should have after the | 3355 The name that the element should have after the |
| 3333 refactoring. | 3356 refactoring. |
| 3334 </p> | 3357 </p> |
| 3335 </field> | 3358 </field> |
| 3336 </options> | 3359 </options> |
| 3337 </refactoring> | 3360 </refactoring> |
| 3338 <refactoring kind=SORT_MEMBERS> | |
| 3339 <p> | |
| 3340 Sort all of the directives, unit and class members | |
| 3341 of the given Dart file. | |
| 3342 </p> | |
| 3343 <p> | |
| 3344 The "offset" and "length" fields from the request are ignored, but the | |
| 3345 file specified in the request specifies the file to be sorted. | |
| 3346 </p> | |
| 3347 </refactoring> | |
| 3348 </refactorings> | 3361 </refactorings> |
| 3349 <h2>Errors</h2> | 3362 <h2>Errors</h2> |
| 3350 <p> | 3363 <p> |
| 3351 This section contains a list of all of the errors that are | 3364 This section contains a list of all of the errors that are |
| 3352 produced by the server and the data that is returned with each. | 3365 produced by the server and the data that is returned with each. |
| 3353 </p> | 3366 </p> |
| 3354 <p> | 3367 <p> |
| 3355 TBD | 3368 TBD |
| 3356 </p> | 3369 </p> |
| 3357 </body> | 3370 </body> |
| 3358 </html> | 3371 </html> |
| OLD | NEW |