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

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

Issue 537733002: Use typed RefactoringOptions in the Dart version of the protocol. (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 1705 matching lines...) Expand 10 before | Expand all | Expand 10 after
1716 1716
1717 1717
1718 1718
1719 1719
1720 1720
1721 1721
1722 1722
1723 1723
1724 1724
1725 1725
1726
1726 <dl><dt class="typeDefinition"><a name="type_AddContentOverlay">AddContentOv erlay: object</a></dt><dd> 1727 <dl><dt class="typeDefinition"><a name="type_AddContentOverlay">AddContentOv erlay: object</a></dt><dd>
1727 <p> 1728 <p>
1728 A directive to begin overlaying the contents of a file. The 1729 A directive to begin overlaying the contents of a file. The
1729 supplied content will be used for analysis in place of the 1730 supplied content will be used for analysis in place of the
1730 file contents in the filesystem. 1731 file contents in the filesystem.
1731 </p> 1732 </p>
1732 <p> 1733 <p>
1733 If this directive is used on a file that already has a file 1734 If this directive is used on a file that already has a file
1734 content overlay, the old overlay is discarded and replaced 1735 content overlay, the old overlay is discarded and replaced
1735 with the new one. 1736 with the new one.
(...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after
2497 The name that should be given to the parameter. 2498 The name that should be given to the parameter.
2498 </p> 2499 </p>
2499 </dd><dt class="field"><b><i>parameters ( <span style="color:#999999"> optional</span> String )</i></b></dt><dd> 2500 </dd><dt class="field"><b><i>parameters ( <span style="color:#999999"> optional</span> String )</i></b></dt><dd>
2500 2501
2501 <p> 2502 <p>
2502 The parameter list of the parameter's function type. 2503 The parameter list of the parameter's function type.
2503 If the parameter is not of a function type, this field will 2504 If the parameter is not of a function type, this field will
2504 not be defined. If the function type has zero parameters, this 2505 not be defined. If the function type has zero parameters, this
2505 field will have a value of "()". 2506 field will have a value of "()".
2506 </p> 2507 </p>
2507 </dd></dl></dd><dt class="typeDefinition"><a name="type_RefactoringMet hodParameterKind">RefactoringMethodParameterKind: String</a></dt><dd> 2508 </dd></dl></dd><dt class="typeDefinition"><a name="type_RefactoringOpt ions">RefactoringOptions: object</a></dt><dd>
2509 <p>
2510 An abstract superclass of all refactoring options.
2511 </p>
2512
2513 <dl></dl></dd><dt class="typeDefinition"><a name="type_RefactoringMethodPa rameterKind">RefactoringMethodParameterKind: String</a></dt><dd>
2508 <p> 2514 <p>
2509 An enumeration of the kinds of parameters. 2515 An enumeration of the kinds of parameters.
2510 </p> 2516 </p>
2511 2517
2512 <dl><dt class="value">REQUIRED</dt><dt class="value">POSITIONAL</dt><dt cl ass="value">NAMED</dt></dl></dd><dt class="typeDefinition"><a name="type_Refacto ringProblem">RefactoringProblem: object</a></dt><dd> 2518 <dl><dt class="value">REQUIRED</dt><dt class="value">POSITIONAL</dt><dt cl ass="value">NAMED</dt></dl></dd><dt class="typeDefinition"><a name="type_Refacto ringProblem">RefactoringProblem: object</a></dt><dd>
2513 <p> 2519 <p>
2514 A description of a problem related to a refactoring. 2520 A description of a problem related to a refactoring.
2515 </p> 2521 </p>
2516 2522
2517 <dl><dt class="field"><b><i>severity ( <a href="#type_RefactoringProblemSe verity">RefactoringProblemSeverity</a> )</i></b></dt><dd> 2523 <dl><dt class="field"><b><i>severity ( <a href="#type_RefactoringProblemSe verity">RefactoringProblemSeverity</a> )</i></b></dt><dd>
(...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after
3098 <p> 3104 <p>
3099 This section contains a list of all of the errors that are 3105 This section contains a list of all of the errors that are
3100 produced by the server and the data that is returned with each. 3106 produced by the server and the data that is returned with each.
3101 </p> 3107 </p>
3102 <p> 3108 <p>
3103 TBD 3109 TBD
3104 </p> 3110 </p>
3105 3111
3106 3112
3107 </body></html> 3113 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698