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

Side by Side Diff: pkg/analysis_server/doc/api.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: Comments addressed 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><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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 <h4>Options</h4> 166 <h4>Options</h4>
167 <blockquote> 167 <blockquote>
168 <dl> 168 <dl>
169 <dt>--no-error-notification</dt> 169 <dt>--no-error-notification</dt>
170 <dd> 170 <dd>
171 Disable notifications about errors (see analysis.error). If this 171 Disable notifications about errors (see analysis.error). If this
172 flag is not specified then notifications will be sent for all 172 flag is not specified then notifications will be sent for all
173 errors produced for all files in the actual analysis roots. 173 errors produced for all files in the actual analysis roots.
174 </dd> 174 </dd>
175 </dl> 175 </dl>
176 <dl>
177 <dt>--file-read-mode</dt>
178 <dd>
179 An enumeration of the ways files can be read from disk. Some clients
180 normalize end of line characters which would make the file offset and
181 range information incorrect. The default option is <tt>as-is</tt>, but
182 can also be set to <tt>normalize-eol-always</tt>. The default option
183 (<tt>as-is</tt>) reads files as they are on disk. The
184 <tt>normalize-eol-always</tt> option does the following:
185 <ul>
186 <li>'\r\n' is converted to '\n';</li>
187 <li>'\r' by itself is converted to '\n';</li>
188 <li>this happens regardless of the OS editor is running on.</li>
189 </ul>
190 </dd>
191 </dl>
176 </blockquote> 192 </blockquote>
177 <h2 class="domain"><a name="domain_server">Domain: server</a></h2> 193 <h2 class="domain"><a name="domain_server">Domain: server</a></h2>
178 <p> 194 <p>
179 The server domain contains API’s related to the execution of 195 The server domain contains API’s related to the execution of
180 the server. 196 the server.
181 </p> 197 </p>
182 198
183 199
184 200
185 201
(...skipping 3423 matching lines...) Expand 10 before | Expand all | Expand 10 after
3609 <p> 3625 <p>
3610 This section contains a list of all of the errors that are 3626 This section contains a list of all of the errors that are
3611 produced by the server and the data that is returned with each. 3627 produced by the server and the data that is returned with each.
3612 </p> 3628 </p>
3613 <p> 3629 <p>
3614 TBD 3630 TBD
3615 </p> 3631 </p>
3616 3632
3617 3633
3618 </body></html> 3634 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698