Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Side by Side Diff: pkg/analysis_server/tool/spec/spec_input.html

Issue 861893003: Library Dependencies Analysis service API. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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">
363 <p>
364 Return a list of all of the libraries referenced by any files in
365 existing analysis roots.
366 </p>
367 <result>
368 <field name="libraries">
369 <list><ref>FilePath</ref></list>
370 <p>
371 A list of the paths of library elements referenced by
372 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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698