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

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

Issue 481533002: (TBR) Fix the build (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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 | « no previous file | pkg/analysis_server/test/integration/integration_test_methods.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1374 matching lines...) Expand 10 before | Expand all | Expand 10 after
1385 "<b>validateOnly</b>": bool 1385 "<b>validateOnly</b>": bool
1386 "<b>options</b>": <span style="color:#999999">optional</span> object 1386 "<b>options</b>": <span style="color:#999999">optional</span> object
1387 } 1387 }
1388 }</pre><br><pre>response: { 1388 }</pre><br><pre>response: {
1389 "id": String 1389 "id": String
1390 "error": <span style="color:#999999">optional</span> <a href="#type_Error">Err or</a> 1390 "error": <span style="color:#999999">optional</span> <a href="#type_Error">Err or</a>
1391 "result": { 1391 "result": {
1392 "<b>status</b>": List&lt;<a href="#type_RefactoringProblem">RefactoringProbl em</a>&gt; 1392 "<b>status</b>": List&lt;<a href="#type_RefactoringProblem">RefactoringProbl em</a>&gt;
1393 "<b>feedback</b>": <span style="color:#999999">optional</span> object 1393 "<b>feedback</b>": <span style="color:#999999">optional</span> object
1394 "<b>change</b>": <span style="color:#999999">optional</span> <a href="#type_ SourceChange">SourceChange</a> 1394 "<b>change</b>": <span style="color:#999999">optional</span> <a href="#type_ SourceChange">SourceChange</a>
1395 "<b>potentialChanges</b>": <span style="color:#999999">optional</span> List& lt;String&gt; 1395 "<b>potentialEdits</b>": <span style="color:#999999">optional</span> List&lt ;String&gt;
1396 } 1396 }
1397 }</pre></div> 1397 }</pre></div>
1398 <p> 1398 <p>
1399 Get the changes required to perform a refactoring. 1399 Get the changes required to perform a refactoring.
1400 </p> 1400 </p>
1401 1401
1402 1402
1403 <h4>Parameters</h4><dl><dt class="field"><b><i>kindId ( <a href="#type_Ref actoringKind">RefactoringKind</a> )</i></b></dt><dd> 1403 <h4>Parameters</h4><dl><dt class="field"><b><i>kindId ( <a href="#type_Ref actoringKind">RefactoringKind</a> )</i></b></dt><dd>
1404 1404
1405 <p> 1405 <p>
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
1457 </dd><dt class="field"><b><i>change ( <span style="color:#999999">opti onal</span> <a href="#type_SourceChange">SourceChange</a> )</i></b></dt><dd> 1457 </dd><dt class="field"><b><i>change ( <span style="color:#999999">opti onal</span> <a href="#type_SourceChange">SourceChange</a> )</i></b></dt><dd>
1458 1458
1459 <p> 1459 <p>
1460 The changes that are to be applied to affect the 1460 The changes that are to be applied to affect the
1461 refactoring. This field will be omitted if there are 1461 refactoring. This field will be omitted if there are
1462 problems that prevent a set of changes from being 1462 problems that prevent a set of changes from being
1463 computed, such as having no options specified for a 1463 computed, such as having no options specified for a
1464 refactoring that requires them, or if only validation 1464 refactoring that requires them, or if only validation
1465 was requested. 1465 was requested.
1466 </p> 1466 </p>
1467 </dd><dt class="field"><b><i>potentialChanges ( <span style="color:#99 9999">optional</span> List&lt;String&gt; )</i></b></dt><dd> 1467 </dd><dt class="field"><b><i>potentialEdits ( <span style="color:#9999 99">optional</span> List&lt;String&gt; )</i></b></dt><dd>
1468 1468
1469 <p> 1469 <p>
1470 The ids of source edits that are not known to be valid. An edit is 1470 The ids of source edits that are not known to be valid. An edit is
1471 not known to be valid if there was insufficient type information 1471 not known to be valid if there was insufficient type information
1472 for the server to be able to determine whether or not the code 1472 for the server to be able to determine whether or not the code
1473 needs to be modified, such as when a member is being renamed and 1473 needs to be modified, such as when a member is being renamed and
1474 there is a reference to a member from an unknown type. This field 1474 there is a reference to a member from an unknown type. This field
1475 will be omitted if the change field is omitted or if there are no 1475 will be omitted if the change field is omitted or if there are no
1476 potential edits for the refactoring. 1476 potential edits for the refactoring.
1477 </p> 1477 </p>
(...skipping 1558 matching lines...) Expand 10 before | Expand all | Expand 10 after
3036 <p> 3036 <p>
3037 This section contains a list of all of the errors that are 3037 This section contains a list of all of the errors that are
3038 produced by the server and the data that is returned with each. 3038 produced by the server and the data that is returned with each.
3039 </p> 3039 </p>
3040 <p> 3040 <p>
3041 TBD 3041 TBD
3042 </p> 3042 </p>
3043 3043
3044 3044
3045 </body></html> 3045 </body></html>
OLDNEW
« no previous file with comments | « no previous file | pkg/analysis_server/test/integration/integration_test_methods.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698