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

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

Issue 468233003: Write an integration test for analysis.navigation notification. (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 1830 matching lines...) Expand 10 before | Expand all | Expand 10 after
1841 </type> 1841 </type>
1842 <type name="ElementKind"> 1842 <type name="ElementKind">
1843 <p> 1843 <p>
1844 An enumeration of the kinds of elements. 1844 An enumeration of the kinds of elements.
1845 </p> 1845 </p>
1846 <enum> 1846 <enum>
1847 <value><code>CLASS</code></value> 1847 <value><code>CLASS</code></value>
1848 <value><code>CLASS_TYPE_ALIAS</code></value> 1848 <value><code>CLASS_TYPE_ALIAS</code></value>
1849 <value><code>COMPILATION_UNIT</code></value> 1849 <value><code>COMPILATION_UNIT</code></value>
1850 <value><code>CONSTRUCTOR</code></value> 1850 <value><code>CONSTRUCTOR</code></value>
1851 <value><code>GETTER</code></value>
1852 <value><code>FIELD</code></value> 1851 <value><code>FIELD</code></value>
1853 <value><code>FUNCTION</code></value> 1852 <value><code>FUNCTION</code></value>
1854 <value><code>FUNCTION_TYPE_ALIAS</code></value> 1853 <value><code>FUNCTION_TYPE_ALIAS</code></value>
1854 <value><code>GETTER</code></value>
1855 <value><code>LIBRARY</code></value> 1855 <value><code>LIBRARY</code></value>
1856 <value><code>LOCAL_VARIABLE</code></value> 1856 <value><code>LOCAL_VARIABLE</code></value>
1857 <value><code>METHOD</code></value> 1857 <value><code>METHOD</code></value>
1858 <value><code>PARAMETER</code></value>
1858 <value><code>SETTER</code></value> 1859 <value><code>SETTER</code></value>
1859 <value><code>TOP_LEVEL_VARIABLE</code></value> 1860 <value><code>TOP_LEVEL_VARIABLE</code></value>
1860 <value><code>TYPE_PARAMETER</code></value> 1861 <value><code>TYPE_PARAMETER</code></value>
1861 <value><code>UNKNOWN</code></value>
1862 <value><code>UNIT_TEST_GROUP</code></value> 1862 <value><code>UNIT_TEST_GROUP</code></value>
1863 <value><code>UNIT_TEST_TEST</code></value> 1863 <value><code>UNIT_TEST_TEST</code></value>
1864 <value><code>UNKNOWN</code></value>
1864 </enum> 1865 </enum>
1865 </type> 1866 </type>
1866 <type name="Error"> 1867 <type name="Error">
1867 <p> 1868 <p>
1868 An indication of a problem with the execution of the server, 1869 An indication of a problem with the execution of the server,
1869 typically in response to a request. The error codes that can 1870 typically in response to a request. The error codes that can
1870 be returned are documented in the section titled Errors. 1871 be returned are documented in the section titled Errors.
1871 </p> 1872 </p>
1872 <object> 1873 <object>
1873 <field name="code"> 1874 <field name="code">
(...skipping 1216 matching lines...) Expand 10 before | Expand all | Expand 10 after
3090 <h2>Errors</h2> 3091 <h2>Errors</h2>
3091 <p> 3092 <p>
3092 This section contains a list of all of the errors that are 3093 This section contains a list of all of the errors that are
3093 produced by the server and the data that is returned with each. 3094 produced by the server and the data that is returned with each.
3094 </p> 3095 </p>
3095 <p> 3096 <p>
3096 TBD 3097 TBD
3097 </p> 3098 </p>
3098 </body> 3099 </body>
3099 </html> 3100 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698