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

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

Issue 484313002: Make search.findElementReferences.result.element field optional. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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/protocol_matchers.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 <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 855 matching lines...) Expand 10 before | Expand all | Expand 10 after
866 </field> 866 </field>
867 </params> 867 </params>
868 <result> 868 <result>
869 <field name="id"> 869 <field name="id">
870 <ref>SearchId</ref> 870 <ref>SearchId</ref>
871 <p> 871 <p>
872 The identifier used to associate results with this 872 The identifier used to associate results with this
873 search request. 873 search request.
874 </p> 874 </p>
875 </field> 875 </field>
876 <field name="element"> 876 <field name="element" optional="true">
877 <ref>Element</ref> 877 <ref>Element</ref>
878 <p> 878 <p>
879 The element referenced or defined at the given offset 879 The element referenced or defined at the given offset
880 and whose references will be returned in the search 880 and whose references will be returned in the search
881 results. 881 results.
882 </p> 882 </p>
883 <p>
884 If no element was found at the given location, this
885 field will be absent.
886 </p>
883 </field> 887 </field>
884 </result> 888 </result>
885 </request> 889 </request>
886 <request method="findMemberDeclarations"> 890 <request method="findMemberDeclarations">
887 <p> 891 <p>
888 Perform a search for declarations of members whose name is 892 Perform a search for declarations of members whose name is
889 equal to the given name. 893 equal to the given name.
890 </p> 894 </p>
891 <p> 895 <p>
892 An identifier is returned immediately, and individual 896 An identifier is returned immediately, and individual
(...skipping 2223 matching lines...) Expand 10 before | Expand all | Expand 10 after
3116 <h2>Errors</h2> 3120 <h2>Errors</h2>
3117 <p> 3121 <p>
3118 This section contains a list of all of the errors that are 3122 This section contains a list of all of the errors that are
3119 produced by the server and the data that is returned with each. 3123 produced by the server and the data that is returned with each.
3120 </p> 3124 </p>
3121 <p> 3125 <p>
3122 TBD 3126 TBD
3123 </p> 3127 </p>
3124 </body> 3128 </body>
3125 </html> 3129 </html>
OLDNEW
« no previous file with comments | « pkg/analysis_server/test/integration/protocol_matchers.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698