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

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

Issue 583843004: Issue 20910. Add SORT_MEMBERS refactoring to the server specification. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 2 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/protocol_matchers.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 <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 2458 matching lines...) Expand 10 before | Expand all | Expand 10 after
2469 </p> 2469 </p>
2470 <enum> 2470 <enum>
2471 <value><code>CONVERT_GETTER_TO_METHOD</code></value> 2471 <value><code>CONVERT_GETTER_TO_METHOD</code></value>
2472 <value><code>CONVERT_METHOD_TO_GETTER</code></value> 2472 <value><code>CONVERT_METHOD_TO_GETTER</code></value>
2473 <value><code>EXTRACT_LOCAL_VARIABLE</code></value> 2473 <value><code>EXTRACT_LOCAL_VARIABLE</code></value>
2474 <value><code>EXTRACT_METHOD</code></value> 2474 <value><code>EXTRACT_METHOD</code></value>
2475 <value><code>INLINE_LOCAL_VARIABLE</code></value> 2475 <value><code>INLINE_LOCAL_VARIABLE</code></value>
2476 <value><code>INLINE_METHOD</code></value> 2476 <value><code>INLINE_METHOD</code></value>
2477 <value><code>MOVE_FILE</code></value> 2477 <value><code>MOVE_FILE</code></value>
2478 <value><code>RENAME</code></value> 2478 <value><code>RENAME</code></value>
2479 <value><code>SORT_MEMBERS</code></value>
2479 </enum> 2480 </enum>
2480 </type> 2481 </type>
2481 <type name="RefactoringMethodParameter"> 2482 <type name="RefactoringMethodParameter">
2482 <p> 2483 <p>
2483 A description of a parameter in a method refactoring. 2484 A description of a parameter in a method refactoring.
2484 </p> 2485 </p>
2485 <object> 2486 <object>
2486 <field name="id" optional="true"> 2487 <field name="id" optional="true">
2487 <ref>String</ref> 2488 <ref>String</ref>
2488 <p> 2489 <p>
(...skipping 847 matching lines...) Expand 10 before | Expand all | Expand 10 after
3336 <options> 3337 <options>
3337 <field name="newName"> 3338 <field name="newName">
3338 <ref>String</ref> 3339 <ref>String</ref>
3339 <p> 3340 <p>
3340 The name that the element should have after the 3341 The name that the element should have after the
3341 refactoring. 3342 refactoring.
3342 </p> 3343 </p>
3343 </field> 3344 </field>
3344 </options> 3345 </options>
3345 </refactoring> 3346 </refactoring>
3347 <refactoring kind=SORT_MEMBERS>
3348 <p>
3349 Sort all of the directives, unit and class members
3350 of the given Dart file.
3351 </p>
3352 <p>
3353 The "offset" and "length" fields from the request are ignored, but the
3354 file specified in the request specifies the file to be sorted.
3355 </p>
3356 </refactoring>
3346 </refactorings> 3357 </refactorings>
3347 <h2>Errors</h2> 3358 <h2>Errors</h2>
3348 <p> 3359 <p>
3349 This section contains a list of all of the errors that are 3360 This section contains a list of all of the errors that are
3350 produced by the server and the data that is returned with each. 3361 produced by the server and the data that is returned with each.
3351 </p> 3362 </p>
3352 <p> 3363 <p>
3353 TBD 3364 TBD
3354 </p> 3365 </p>
3355 </body> 3366 </body>
3356 </html> 3367 </html>
OLDNEW
« no previous file with comments | « pkg/analysis_server/test/integration/protocol_matchers.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698