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

Side by Side Diff: pkg/analysis_server/tool/spec/spec_input.html

Issue 479043002: Code generate Dart classes representing the analysis server API. (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> 1 <html>
2 <head> 2 <head>
3 <meta charset="UTF-8"/> 3 <meta charset="UTF-8"/>
4 <title>Analysis Server API Specification</title> 4 <title>Analysis Server API Specification</title>
5 </head> 5 </head>
6 <body> 6 <body>
7 <h1>Analysis Server API Specification</h1> 7 <h1>Analysis Server API Specification</h1>
8 <h1 style="color:#999999">WORKING DRAFT - Version <version>0.3</version></h1 > 8 <h1 style="color:#999999">WORKING DRAFT - Version <version>0.3</version></h1 >
9 <p> 9 <p>
10 This document contains a specification of the API provided by 10 This document contains a specification of the API provided by
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 therefore seen by server as being files with the given 476 therefore seen by server as being files with the given
477 content, even if the files do not exist on the filesystem or 477 content, even if the files do not exist on the filesystem or
478 if the file path represents the path to a directory on the 478 if the file path represents the path to a directory on the
479 filesystem. 479 filesystem.
480 </p> 480 </p>
481 <params> 481 <params>
482 <field name="files"> 482 <field name="files">
483 <map> 483 <map>
484 <key><ref>FilePath</ref></key> 484 <key><ref>FilePath</ref></key>
485 <value> 485 <value>
486 <union> 486 <union field="type">
487 <ref>AddContentOverlay</ref> 487 <ref>AddContentOverlay</ref>
488 <ref>ChangeContentOverlay</ref> 488 <ref>ChangeContentOverlay</ref>
489 <ref>RemoveContentOverlay</ref> 489 <ref>RemoveContentOverlay</ref>
490 </union> 490 </union>
491 </value> 491 </value>
492 </map> 492 </map>
493 <p> 493 <p>
494 A table mapping the files whose content has changed to a 494 A table mapping the files whose content has changed to a
495 description of the content change. 495 description of the content change.
496 </p> 496 </p>
(...skipping 2620 matching lines...) Expand 10 before | Expand all | Expand 10 after
3117 <h2>Errors</h2> 3117 <h2>Errors</h2>
3118 <p> 3118 <p>
3119 This section contains a list of all of the errors that are 3119 This section contains a list of all of the errors that are
3120 produced by the server and the data that is returned with each. 3120 produced by the server and the data that is returned with each.
3121 </p> 3121 </p>
3122 <p> 3122 <p>
3123 TBD 3123 TBD
3124 </p> 3124 </p>
3125 </body> 3125 </body>
3126 </html> 3126 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698