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

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

Issue 551963002: Add feedback for INLINE_METHOD refactoring. (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 3075 matching lines...) Expand 10 before | Expand all | Expand 10 after
3086 </dd></dl><h4>Options</h4><p>none</p></dd><dt class="refactoring">INLI NE_METHOD</dt><dd> 3086 </dd></dl><h4>Options</h4><p>none</p></dd><dt class="refactoring">INLI NE_METHOD</dt><dd>
3087 <p> 3087 <p>
3088 Inline a method in place of one or all references to that 3088 Inline a method in place of one or all references to that
3089 method. 3089 method.
3090 </p> 3090 </p>
3091 <p> 3091 <p>
3092 It is an error if the range contains anything other than all 3092 It is an error if the range contains anything other than all
3093 or part of the name of a single method. 3093 or part of the name of a single method.
3094 </p> 3094 </p>
3095 3095
3096 <h4>Feedback</h4><p>none</p><h4>Options</h4><dl><dt class="field"><b><i>de leteSource ( bool )</i></b></dt><dd> 3096
3097 <h4>Feedback</h4><dl><dt class="field"><b><i>className ( <span style="colo r:#999999">optional</span> String )</i></b></dt><dd>
3097 3098
3098 <p> 3099 <p>
3099 True if the method being inlined should be removed. It 3100 The name of the class enclosing the method being inlined.
3100 is an error if this field is true and inlineAll is 3101 If not a class member is being inlined, this field will be absent.
3101 false. 3102 </p>
3103 </dd><dt class="field"><b><i>methodName ( String )</i></b></dt><dd>
3104
3105 <p>
3106 The name of the method (or function) being inlined.
3107 </p>
3108 </dd><dt class="field"><b><i>isDeclaration ( bool )</i></b></dt><dd>
3109
3110 <p>
3111 True is the declaration of the method is selected.
3112 So all references should be inlined.
3113 </p>
3114 </dd></dl><h4>Options</h4><dl><dt class="field"><b><i>deleteSource ( b ool )</i></b></dt><dd>
3115
3116 <p>
3117 True if the method being inlined should be removed.
3118 It is an error if this field is true and inlineAll is false.
3102 </p> 3119 </p>
3103 </dd><dt class="field"><b><i>inlineAll ( bool )</i></b></dt><dd> 3120 </dd><dt class="field"><b><i>inlineAll ( bool )</i></b></dt><dd>
3104 3121
3105 <p> 3122 <p>
3106 True if all invocations of the method should be inlined, 3123 True if all invocations of the method should be inlined,
3107 or false if only the invocation site used to create this 3124 or false if only the invocation site used to create this
3108 refactoring should be inlined. 3125 refactoring should be inlined.
3109 </p> 3126 </p>
3110 </dd></dl></dd><dt class="refactoring">RENAME</dt><dd> 3127 </dd></dl></dd><dt class="refactoring">RENAME</dt><dd>
3111 <p> 3128 <p>
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
3154 <p> 3171 <p>
3155 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
3156 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.
3157 </p> 3174 </p>
3158 <p> 3175 <p>
3159 TBD 3176 TBD
3160 </p> 3177 </p>
3161 3178
3162 3179
3163 </body></html> 3180 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698