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

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

Issue 894863002: Formatter service API tweaks. (Closed) Base URL: http://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/test/integration/integration_test_methods.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 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.0.0</version></h1> 9 <h1 style="color:#999999">Version <version>1.0.0</version></h1>
10 <p> 10 <p>
(...skipping 1283 matching lines...) Expand 10 before | Expand all | Expand 10 after
1294 <params> 1294 <params>
1295 <field name="file"> 1295 <field name="file">
1296 <ref>FilePath</ref> 1296 <ref>FilePath</ref>
1297 <p> 1297 <p>
1298 The file containing the code to be formatted. 1298 The file containing the code to be formatted.
1299 </p> 1299 </p>
1300 </field> 1300 </field>
1301 <field name="selectionOffset"> 1301 <field name="selectionOffset">
1302 <ref>int</ref> 1302 <ref>int</ref>
1303 <p> 1303 <p>
1304 The offset of the current selection in the file. 1304 The offset of the current selection in the file. In case
1305 preserving, selection information is not required, 0 can be
1306 specified for both selection offset and length.
1305 </p> 1307 </p>
1306 </field> 1308 </field>
1307 <field name="selectionLength"> 1309 <field name="selectionLength">
1308 <ref>int</ref> 1310 <ref>int</ref>
1309 <p> 1311 <p>
1310 The length of the current selection in the file. 1312 The length of the current selection in the file. In case
1313 preserving, selection information is not required, 0 can be
1314 specified for both selection offset and length.
1311 </p> 1315 </p>
1312 </field> 1316 </field>
1313 <!-- 1317 <!--
1314 <field name="selectionOnly" optional="true"> 1318 <field name="selectionOnly" optional="true">
1315 <ref>bool</ref> 1319 <ref>bool</ref>
1316 <p> 1320 <p>
1317 True if the code to be formatted should be limited to the selected 1321 True if the code to be formatted should be limited to the selected
1318 text (or the smallest portion of text that encloses the selected 1322 text (or the smallest portion of text that encloses the selected
1319 text that can be formatted). 1323 text that can be formatted).
1320 </p> 1324 </p>
(...skipping 2471 matching lines...) Expand 10 before | Expand all | Expand 10 after
3792 <h2>Errors</h2> 3796 <h2>Errors</h2>
3793 <p> 3797 <p>
3794 This section contains a list of all of the errors that are 3798 This section contains a list of all of the errors that are
3795 produced by the server and the data that is returned with each. 3799 produced by the server and the data that is returned with each.
3796 </p> 3800 </p>
3797 <p> 3801 <p>
3798 TBD 3802 TBD
3799 </p> 3803 </p>
3800 </body> 3804 </body>
3801 </html> 3805 </html>
OLDNEW
« no previous file with comments | « pkg/analysis_server/test/integration/integration_test_methods.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698