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

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

Issue 896513002: Specify mapUri for directories (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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
« no previous file with comments | « pkg/analysis_server/test/integration/integration_test_methods.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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.0.0</version></h1> 9 <h1 style="color:#999999">Version <version>1.0.0</version></h1>
10 <p> 10 <p>
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 <map> 387 <map>
388 <key><ref>String</ref></key> 388 <key><ref>String</ref></key>
389 <value> 389 <value>
390 <map> 390 <map>
391 <key><ref>String</ref></key> 391 <key><ref>String</ref></key>
392 <value><list><ref>FilePath</ref></list></value> 392 <value><list><ref>FilePath</ref></list></value>
393 </map> 393 </map>
394 </value> 394 </value>
395 </map> 395 </map>
396 <p> 396 <p>
397 A mapping from context source roots to package maps which map 397 A mapping from context source roots to package maps which map
398 package names to source directories for use in client-side 398 package names to source directories for use in client-side
399 package URI resolution. 399 package URI resolution.
400 </p> 400 </p>
401 </field> 401 </field>
402 </result> 402 </result>
403 </request> 403 </request>
404 <request method="getNavigation"> 404 <request method="getNavigation">
405 <p> 405 <p>
406 Return the navigation information associated with the given region of 406 Return the navigation information associated with the given region of
407 the given file. If the navigation information for the given file has 407 the given file. If the navigation information for the given file has
408 not yet been computed, or the most recently computed navigation 408 not yet been computed, or the most recently computed navigation
(...skipping 1241 matching lines...) Expand 10 before | Expand all | Expand 10 after
1650 </request> 1650 </request>
1651 <request method="mapUri"> 1651 <request method="mapUri">
1652 <p> 1652 <p>
1653 Map a URI from the execution context to the file that it corresponds 1653 Map a URI from the execution context to the file that it corresponds
1654 to, or map a file to the URI that it corresponds to in the execution 1654 to, or map a file to the URI that it corresponds to in the execution
1655 context. 1655 context.
1656 </p> 1656 </p>
1657 <p> 1657 <p>
1658 Exactly one of the file and uri fields must be provided. 1658 Exactly one of the file and uri fields must be provided.
1659 </p> 1659 </p>
1660 <p>
1661 If the root of the execution context is a directory rather than a
scheglov 2015/02/02 18:17:52 What is "the root of the execution context"? Is it
Paul Berry 2015/02/02 19:07:58 I'm not terribly familiar with this part of the AP
1662 file, then an error of type <tt>MAP_URI_FOR_DIRECTORY</tt> will be
1663 generated.
1664 </p>
1660 <params> 1665 <params>
1661 <field name="id"> 1666 <field name="id">
1662 <ref>ExecutionContextId</ref> 1667 <ref>ExecutionContextId</ref>
1663 <p> 1668 <p>
1664 The identifier of the execution context in which the URI is to be 1669 The identifier of the execution context in which the URI is to be
1665 mapped. 1670 mapped.
1666 </p> 1671 </p>
1667 </field> 1672 </field>
1668 <field name="file" optional="true"> 1673 <field name="file" optional="true">
1669 <ref>FilePath</ref> 1674 <ref>FilePath</ref>
(...skipping 2104 matching lines...) Expand 10 before | Expand all | Expand 10 after
3774 <h2>Errors</h2> 3779 <h2>Errors</h2>
3775 <p> 3780 <p>
3776 This section contains a list of all of the errors that are 3781 This section contains a list of all of the errors that are
3777 produced by the server and the data that is returned with each. 3782 produced by the server and the data that is returned with each.
3778 </p> 3783 </p>
3779 <p> 3784 <p>
3780 TBD 3785 TBD
3781 </p> 3786 </p>
3782 </body> 3787 </body>
3783 </html> 3788 </html>
OLDNEW
« no previous file with comments | « pkg/analysis_server/test/integration/integration_test_methods.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698