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

Side by Side Diff: pkg/analysis_server/doc/api.html

Issue 554143003: Integrate the EXTRACT_METHOD refactoring into Editor. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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 3031 matching lines...) Expand 10 before | Expand all | Expand 10 after
3042 The parameters that should be defined for the method. 3042 The parameters that should be defined for the method.
3043 </p> 3043 </p>
3044 <p> 3044 <p>
3045 It is an error if a REQUIRED or NAMED parameter follows a 3045 It is an error if a REQUIRED or NAMED parameter follows a
3046 POSITIONAL parameter. 3046 POSITIONAL parameter.
3047 It is an error if a REQUIRED or POSITIONAL parameter follows a 3047 It is an error if a REQUIRED or POSITIONAL parameter follows a
3048 NAMED parameter. 3048 NAMED parameter.
3049 </p> 3049 </p>
3050 <ul> 3050 <ul>
3051 <li> 3051 <li>
3052 To change the order and/or update proposed paramerers, add 3052 To change the order and/or update proposed parameters, add
3053 parameters with the same identifiers as proposed. 3053 parameters with the same identifiers as proposed.
3054 </li> 3054 </li>
3055 <li>To add new parameters, omit their identifier.</li> 3055 <li>To add new parameters, omit their identifier.</li>
3056 <li>To remove some parameters, omit them in this list.</li> 3056 <li>To remove some parameters, omit them in this list.</li>
3057 </ul> 3057 </ul>
3058 </dd><dt class="field"><b><i>extractAll ( bool )</i></b></dt><dd> 3058 </dd><dt class="field"><b><i>extractAll ( bool )</i></b></dt><dd>
3059 3059
3060 <p> 3060 <p>
3061 True if all occurrences of the expression or statements 3061 True if all occurrences of the expression or statements
3062 should be replaced by an invocation of the method. The 3062 should be replaced by an invocation of the method. The
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
3171 <p> 3171 <p>
3172 This section contains a list of all of the errors that are 3172 This section contains a list of all of the errors that are
3173 produced by the server and the data that is returned with each. 3173 produced by the server and the data that is returned with each.
3174 </p> 3174 </p>
3175 <p> 3175 <p>
3176 TBD 3176 TBD
3177 </p> 3177 </p>
3178 3178
3179 3179
3180 </body></html> 3180 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698