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

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

Issue 456613004: Integration test search.getTypeHierarchy and make some minor fixes. (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
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 972 matching lines...) Expand 10 before | Expand all | Expand 10 after
983 </p> 983 </p>
984 </field> 984 </field>
985 <field name="offset"> 985 <field name="offset">
986 <ref>int</ref> 986 <ref>int</ref>
987 <p> 987 <p>
988 The offset of the name of the type within the file. 988 The offset of the name of the type within the file.
989 </p> 989 </p>
990 </field> 990 </field>
991 </params> 991 </params>
992 <result> 992 <result>
993 <field name="hierarchyItems"> 993 <field name="hierarchyItems" optional="true">
994 <list><ref>TypeHierarchyItem</ref></list> 994 <list><ref>TypeHierarchyItem</ref></list>
995 <p> 995 <p>
996 A list of the types in the requested hierarchy. The 996 A list of the types in the requested hierarchy. The
997 first element of the list is the item representing the 997 first element of the list is the item representing the
998 type for which the hierarchy was requested. The index of 998 type for which the hierarchy was requested. The index of
999 other elements of the list is unspecified, but 999 other elements of the list is unspecified, but
1000 correspond to the integers used to reference supertype 1000 correspond to the integers used to reference supertype
1001 and subtype items within the items. 1001 and subtype items within the items.
1002 </p> 1002 </p>
1003 <p>
1004 This field will be absent if the code at the given file
1005 and offset does not represent a type, or if the file has
1006 not been sufficiently analyzed to allow a type hierarchy
1007 to be produced.
1008 </p>
1003 </field> 1009 </field>
1004 </result> 1010 </result>
1005 </request> 1011 </request>
1006 <notification event="results"> 1012 <notification event="results">
1007 <p> 1013 <p>
1008 Reports some or all of the results of performing a requested 1014 Reports some or all of the results of performing a requested
1009 search. Unlike other notifications, this notification 1015 search. Unlike other notifications, this notification
1010 contains search results that should be added to any 1016 contains search results that should be added to any
1011 previously received search results associated with the same 1017 previously received search results associated with the same
1012 search id. 1018 search id.
(...skipping 2046 matching lines...) Expand 10 before | Expand all | Expand 10 after
3059 <h2>Errors</h2> 3065 <h2>Errors</h2>
3060 <p> 3066 <p>
3061 This section contains a list of all of the errors that are 3067 This section contains a list of all of the errors that are
3062 produced by the server and the data that is returned with each. 3068 produced by the server and the data that is returned with each.
3063 </p> 3069 </p>
3064 <p> 3070 <p>
3065 TBD 3071 TBD
3066 </p> 3072 </p>
3067 </body> 3073 </body>
3068 </html> 3074 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698