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

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

Issue 857283003: Addition of the new flag "file-read-mode" into the analysis server to fix the offset bug with Intel… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 <h4>Options</h4> 128 <h4>Options</h4>
129 <blockquote> 129 <blockquote>
130 <dl> 130 <dl>
131 <dt>--no-error-notification</dt> 131 <dt>--no-error-notification</dt>
132 <dd> 132 <dd>
133 Disable notifications about errors (see analysis.error). If this 133 Disable notifications about errors (see analysis.error). If this
134 flag is not specified then notifications will be sent for all 134 flag is not specified then notifications will be sent for all
135 errors produced for all files in the actual analysis roots. 135 errors produced for all files in the actual analysis roots.
136 </dd> 136 </dd>
137 </dl> 137 </dl>
138 <dl>
139 <dt>--file-read-mode</dt>
140 <dd>
141 An enumeration of the ways files can be read from disk. Some clients
142 normalize end of line characters which would make the file offset and
143 range information incorrect. The default option is <tt>as-is</tt>, but
144 can also be set to <tt>normalize-eol</tt>.
145 </dd>
146 </dl>
138 </blockquote> 147 </blockquote>
139 <domain name="server"> 148 <domain name="server">
140 <p> 149 <p>
141 The server domain contains API’s related to the execution of 150 The server domain contains API’s related to the execution of
142 the server. 151 the server.
143 </p> 152 </p>
144 <request method="getVersion"> 153 <request method="getVersion">
145 <p>Return the version number of the analysis server.</p> 154 <p>Return the version number of the analysis server.</p>
146 <result> 155 <result>
147 <field name="version"> 156 <field name="version">
(...skipping 3554 matching lines...) Expand 10 before | Expand all | Expand 10 after
3702 <h2>Errors</h2> 3711 <h2>Errors</h2>
3703 <p> 3712 <p>
3704 This section contains a list of all of the errors that are 3713 This section contains a list of all of the errors that are
3705 produced by the server and the data that is returned with each. 3714 produced by the server and the data that is returned with each.
3706 </p> 3715 </p>
3707 <p> 3716 <p>
3708 TBD 3717 TBD
3709 </p> 3718 </p>
3710 </body> 3719 </body>
3711 </html> 3720 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698