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

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

Issue 446983002: Change the type of Error.code from int to String. (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/protocol_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 1841 matching lines...) Expand 10 before | Expand all | Expand 10 after
1852 </enum> 1852 </enum>
1853 </type> 1853 </type>
1854 <type name="Error"> 1854 <type name="Error">
1855 <p> 1855 <p>
1856 An indication of a problem with the execution of the server, 1856 An indication of a problem with the execution of the server,
1857 typically in response to a request. The error codes that can 1857 typically in response to a request. The error codes that can
1858 be returned are documented in the section titled Errors. 1858 be returned are documented in the section titled Errors.
1859 </p> 1859 </p>
1860 <object> 1860 <object>
1861 <field name="code"> 1861 <field name="code">
1862 <!-- TODO(paulberry): this should be a String, but the 1862 <ref>String</ref>
1863 server is currently outputting an int. -->
1864 <ref>int</ref>
1865 <p> 1863 <p>
1866 A code that uniquely identifies the error that occurred. 1864 A code that uniquely identifies the error that occurred.
1867 </p> 1865 </p>
1868 </field> 1866 </field>
1869 <field name="message"> 1867 <field name="message">
1870 <ref>String</ref> 1868 <ref>String</ref>
1871 <p> 1869 <p>
1872 A short description of the error. 1870 A short description of the error.
1873 </p> 1871 </p>
1874 </field> 1872 </field>
(...skipping 1150 matching lines...) Expand 10 before | Expand all | Expand 10 after
3025 <h2>Errors</h2> 3023 <h2>Errors</h2>
3026 <p> 3024 <p>
3027 This section contains a list of all of the errors that are 3025 This section contains a list of all of the errors that are
3028 produced by the server and the data that is returned with each. 3026 produced by the server and the data that is returned with each.
3029 </p> 3027 </p>
3030 <p> 3028 <p>
3031 TBD 3029 TBD
3032 </p> 3030 </p>
3033 </body> 3031 </body>
3034 </html> 3032 </html>
OLDNEW
« no previous file with comments | « pkg/analysis_server/test/protocol_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698