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

Side by Side Diff: pkg/analysis_server/doc/api.html

Issue 1042403002: add UNKNOWN_SOURCE error code and remove 2 unused legacy error codes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 5 years, 8 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><head> 1 <html><head>
2 <meta charset="UTF-8"> 2 <meta charset="UTF-8">
3 <title>Analysis Server API Specification</title> 3 <title>Analysis Server API Specification</title>
4 <style>body { 4 <style>body {
5 font-family: sans-serif, serif; 5 font-family: sans-serif, serif;
6 padding-left: 5%; 6 padding-left: 5%;
7 padding-right: 5%; 7 padding-right: 5%;
8 } 8 }
9 h1 { 9 h1 {
10 text-align: center; 10 text-align: center;
(...skipping 3194 matching lines...) Expand 10 before | Expand all | Expand 10 after
3205 API reaches version 1.0. 3205 API reaches version 1.0.
3206 </p> 3206 </p>
3207 3207
3208 </dd><dt class="value">UNKNOWN_REQUEST</dt><dd> 3208 </dd><dt class="value">UNKNOWN_REQUEST</dt><dd>
3209 3209
3210 <p> 3210 <p>
3211 A request was received which the analysis server does 3211 A request was received which the analysis server does
3212 not recognize, or cannot handle in its current 3212 not recognize, or cannot handle in its current
3213 configuation. 3213 configuation.
3214 </p> 3214 </p>
3215 </dd><dt class="value">UNKNOWN_SOURCE</dt><dd>
3216
3217 <p>
3218 The analysis server was requested to perform an action
3219 on a source that does not exist.
3220 </p>
3215 </dd><dt class="value">UNSUPPORTED_FEATURE</dt><dd> 3221 </dd><dt class="value">UNSUPPORTED_FEATURE</dt><dd>
3216 3222
3217 <p> 3223 <p>
3218 The analysis server was requested to perform an action 3224 The analysis server was requested to perform an action
3219 which is not supported. 3225 which is not supported.
3220 </p> 3226 </p>
3221 <p> 3227 <p>
3222 This is a legacy error; it will be removed before the 3228 This is a legacy error; it will be removed before the
3223 API reaches version 1.0. 3229 API reaches version 1.0.
3224 </p> 3230 </p>
(...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
3771 <p> 3777 <p>
3772 This section contains a list of all of the errors that are 3778 This section contains a list of all of the errors that are
3773 produced by the server and the data that is returned with each. 3779 produced by the server and the data that is returned with each.
3774 </p> 3780 </p>
3775 <p> 3781 <p>
3776 TBD 3782 TBD
3777 </p> 3783 </p>
3778 3784
3779 3785
3780 </body></html> 3786 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698