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

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

Issue 529123002: Make findElementReferences' "id" result optional. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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/search/element_references_test.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 848 matching lines...) Expand 10 before | Expand all | Expand 10 after
859 </field> 859 </field>
860 <field name="includePotential"> 860 <field name="includePotential">
861 <ref>bool</ref> 861 <ref>bool</ref>
862 <p> 862 <p>
863 True if potential matches are to be included in the 863 True if potential matches are to be included in the
864 results. 864 results.
865 </p> 865 </p>
866 </field> 866 </field>
867 </params> 867 </params>
868 <result> 868 <result>
869 <field name="id"> 869 <field name="id" optional="true">
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 <p>
876 If no element was found at the given location, this
877 field will be absent, and no results will be reported
878 via the search.results notification.
879 </p>
875 </field> 880 </field>
876 <field name="element" optional="true"> 881 <field name="element" optional="true">
877 <ref>Element</ref> 882 <ref>Element</ref>
878 <p> 883 <p>
879 The element referenced or defined at the given offset 884 The element referenced or defined at the given offset
880 and whose references will be returned in the search 885 and whose references will be returned in the search
881 results. 886 results.
882 </p> 887 </p>
883 <p> 888 <p>
884 If no element was found at the given location, this 889 If no element was found at the given location, this
(...skipping 2298 matching lines...) Expand 10 before | Expand all | Expand 10 after
3183 <h2>Errors</h2> 3188 <h2>Errors</h2>
3184 <p> 3189 <p>
3185 This section contains a list of all of the errors that are 3190 This section contains a list of all of the errors that are
3186 produced by the server and the data that is returned with each. 3191 produced by the server and the data that is returned with each.
3187 </p> 3192 </p>
3188 <p> 3193 <p>
3189 TBD 3194 TBD
3190 </p> 3195 </p>
3191 </body> 3196 </body>
3192 </html> 3197 </html>
OLDNEW
« no previous file with comments | « pkg/analysis_server/test/search/element_references_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698