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 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 352 The hover information associated with the | 352 The hover information associated with the |
| 353 location. The list will be empty if no information | 353 location. The list will be empty if no information |
| 354 could be determined for the location. The list can | 354 could be determined for the location. The list can |
| 355 contain multiple items if the file is being analyzed | 355 contain multiple items if the file is being analyzed |
| 356 in multiple contexts in conflicting ways (such as a | 356 in multiple contexts in conflicting ways (such as a |
| 357 part that is included in multiple libraries). | 357 part that is included in multiple libraries). |
| 358 </p> | 358 </p> |
| 359 </field> | 359 </field> |
| 360 </result> | 360 </result> |
| 361 </request> | 361 </request> |
| 362 <request method="getLibraryDependencies"> | |
|
Brian Wilkerson
2015/01/22 01:45:34
I do think it would be better to return a list of
pquitslund
2015/01/22 19:22:15
As per our conversation, I completely agree. Stay
| |
| 363 <p> | |
| 364 Return a list of all of the directories containing libraries | |
| 365 referenced by any files in existing analysis roots. | |
| 366 </p> | |
| 367 <result> | |
| 368 <field name="directories"> | |
| 369 <list><ref>FilePath</ref></list> | |
| 370 <p> | |
| 371 A list of the paths of directories that contain library | |
| 372 elements referenced by files in existing analysis roots. | |
| 373 </p> | |
| 374 </field> | |
| 375 </result> | |
| 376 </request> | |
| 362 <request method="getNavigation"> | 377 <request method="getNavigation"> |
| 363 <p> | 378 <p> |
| 364 Return the navigation information associated with the given region of | 379 Return the navigation information associated with the given region of |
| 365 the given file. If the navigation information for the given file has | 380 the given file. If the navigation information for the given file has |
| 366 not yet been computed, or the most recently computed navigation | 381 not yet been computed, or the most recently computed navigation |
| 367 information for the given file is out of date, then the response for | 382 information for the given file is out of date, then the response for |
| 368 this request will be delayed until it has been computed. If the | 383 this request will be delayed until it has been computed. If the |
| 369 content of the file changes after this request was received but before | 384 content of the file changes after this request was received but before |
| 370 a response could be sent, then an error of type | 385 a response could be sent, then an error of type |
| 371 <tt>CONTENT_MODIFIED</tt> will be generated. | 386 <tt>CONTENT_MODIFIED</tt> will be generated. |
| (...skipping 3346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 3718 <h2>Errors</h2> | 3733 <h2>Errors</h2> |
| 3719 <p> | 3734 <p> |
| 3720 This section contains a list of all of the errors that are | 3735 This section contains a list of all of the errors that are |
| 3721 produced by the server and the data that is returned with each. | 3736 produced by the server and the data that is returned with each. |
| 3722 </p> | 3737 </p> |
| 3723 <p> | 3738 <p> |
| 3724 TBD | 3739 TBD |
| 3725 </p> | 3740 </p> |
| 3726 </body> | 3741 </body> |
| 3727 </html> | 3742 </html> |
| OLD | NEW |