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

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

Issue 496113002: Make RefactoringProblem.location optional. (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
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 2521 matching lines...) Expand 10 before | Expand all | Expand 10 after
2532 2532
2533 <p> 2533 <p>
2534 The severity of the problem being represented. 2534 The severity of the problem being represented.
2535 </p> 2535 </p>
2536 </dd><dt class="field"><b><i>message ( String )</i></b></dt><dd> 2536 </dd><dt class="field"><b><i>message ( String )</i></b></dt><dd>
2537 2537
2538 <p> 2538 <p>
2539 A human-readable description of the problem being 2539 A human-readable description of the problem being
2540 represented. 2540 represented.
2541 </p> 2541 </p>
2542 </dd><dt class="field"><b><i>location ( <a href="#type_Location">Locat ion</a> )</i></b></dt><dd> 2542 </dd><dt class="field"><b><i>location ( <span style="color:#999999">op tional</span> <a href="#type_Location">Location</a> )</i></b></dt><dd>
2543 2543
2544 <p> 2544 <p>
2545 The location of the problem being represented. 2545 The location of the problem being represented.
2546 This field is omitted unless there is a specific location
2547 associated with the problem (such as a location where an element
2548 being renamed will be shadowed).
2546 </p> 2549 </p>
2547 </dd></dl></dd><dt class="typeDefinition"><a name="type_RefactoringPro blemSeverity">RefactoringProblemSeverity: String</a></dt><dd> 2550 </dd></dl></dd><dt class="typeDefinition"><a name="type_RefactoringPro blemSeverity">RefactoringProblemSeverity: String</a></dt><dd>
2548 <p> 2551 <p>
2549 An enumeration of the severities of problems that can be 2552 An enumeration of the severities of problems that can be
2550 returned by the refactoring requests. 2553 returned by the refactoring requests.
2551 </p> 2554 </p>
2552 2555
2553 <dl><dt class="value">INFO</dt><dt class="value">WARNING</dt><dt class="va lue">ERROR</dt><dt class="value">FATAL</dt></dl></dd><dt class="typeDefinition"> <a name="type_RemoveContentOverlay">RemoveContentOverlay: object</a></dt><dd> 2556 <dl><dt class="value">INFO</dt><dt class="value">WARNING</dt><dt class="va lue">ERROR</dt><dt class="value">FATAL</dt></dl></dd><dt class="typeDefinition"> <a name="type_RemoveContentOverlay">RemoveContentOverlay: object</a></dt><dd>
2554 <p> 2557 <p>
2555 A directive to remove an existing file content overlay. 2558 A directive to remove an existing file content overlay.
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after
3043 <p> 3046 <p>
3044 This section contains a list of all of the errors that are 3047 This section contains a list of all of the errors that are
3045 produced by the server and the data that is returned with each. 3048 produced by the server and the data that is returned with each.
3046 </p> 3049 </p>
3047 <p> 3050 <p>
3048 TBD 3051 TBD
3049 </p> 3052 </p>
3050 3053
3051 3054
3052 </body></html> 3055 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698