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

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

Issue 931833003: Fix build, address comments from Brian in previous email. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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/doc/api.html ('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 1
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta charset="UTF-8"/> 4 <meta charset="UTF-8"/>
5 <title>Analysis Server API Specification</title> 5 <title>Analysis Server API Specification</title>
6 </head> 6 </head>
7 <body> 7 <body>
8 <h1>Analysis Server API Specification</h1> 8 <h1>Analysis Server API Specification</h1>
9 <h1 style="color:#999999">Version <version>1.2.0</version></h1> 9 <h1 style="color:#999999">Version <version>1.2.0</version></h1>
10 <p> 10 <p>
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 <ul> 158 <ul>
159 <li>'\r\n' is converted to '\n';</li> 159 <li>'\r\n' is converted to '\n';</li>
160 <li>'\r' by itself is converted to '\n';</li> 160 <li>'\r' by itself is converted to '\n';</li>
161 <li>this happens regardless of the OS editor is running on.</li> 161 <li>this happens regardless of the OS editor is running on.</li>
162 </ul> 162 </ul>
163 </dd> 163 </dd>
164 </dl> 164 </dl>
165 <dl> 165 <dl>
166 <dt>--no-index</dt> 166 <dt>--no-index</dt>
167 <dd> 167 <dd>
168 An indication that no indexer calls will be made to the analysis server, 168 Disable the server from generating an index. If this flag is passed and an
169 and thus, no index should be created. If this flag is passed and an API is 169 API is used that requires an index, then an error, <tt>NO_INDEX_GENERATED< /tt>,
170 used that requires an index, then an <tt>NO_INDEX_GENERATED</tt> exception
171 will be thrown. The set of API calls that require an index include: 170 will be thrown. The set of API calls that require an index include:
172 refactoring calls, code completions and searching. 171 refactoring calls, code completions and searching.
173 <!-- TODO(jwren/scheglov): make sure that this of APIs that is complete. - -> 172 <!-- TODO(jwren/scheglov): make sure that this of APIs that is complete. - ->
174 </dd> 173 </dd>
175 </dl> 174 </dl>
176 </blockquote> 175 </blockquote>
177 <domain name="server"> 176 <domain name="server">
178 <p> 177 <p>
179 The server domain contains API’s related to the execution of 178 The server domain contains API’s related to the execution of
180 the server. 179 the server.
(...skipping 3659 matching lines...) Expand 10 before | Expand all | Expand 10 after
3840 <h2>Errors</h2> 3839 <h2>Errors</h2>
3841 <p> 3840 <p>
3842 This section contains a list of all of the errors that are 3841 This section contains a list of all of the errors that are
3843 produced by the server and the data that is returned with each. 3842 produced by the server and the data that is returned with each.
3844 </p> 3843 </p>
3845 <p> 3844 <p>
3846 TBD 3845 TBD
3847 </p> 3846 </p>
3848 </body> 3847 </body>
3849 </html> 3848 </html>
OLDNEW
« no previous file with comments | « pkg/analysis_server/doc/api.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698