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

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

Issue 1375163003: Specification change for the 'libraryName' and 'partOfLibraryName' fields in Outline. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Merge 'libraryName' and 'partOfLibraryName' fields. Created 5 years, 2 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
« no previous file with comments | « pkg/analysis_server/tool/spec/generated/java/types/FileKind.java ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta charset="UTF-8"/> 4 <meta charset="UTF-8"/>
5 <title>Analysis Server API Specification</title> 5 <title>Analysis Server API Specification</title>
6 </head> 6 </head>
7 <body> 7 <body>
8 <h1>Analysis Server API Specification</h1> 8 <h1>Analysis Server API Specification</h1>
9 <h1 style="color:#999999">Version <version>1.9.0</version></h1> 9 <h1 style="color:#999999">Version <version>1.10.0</version></h1>
10 <p> 10 <p>
11 This document contains a specification of the API provided by the 11 This document contains a specification of the API provided by the
12 analysis server. The API in this document is currently under 12 analysis server. The API in this document is currently under
13 development. Changes to the API will be accompanied by an update to the 13 development. Changes to the API will be accompanied by an update to the
14 protocol version number according to the principles of semantic 14 protocol version number according to the principles of semantic
15 versioning <a href="http://semver.org/">http://semver.org/</a>. 15 versioning <a href="http://semver.org/">http://semver.org/</a>.
16 </p> 16 </p>
17 <h2>Overview</h2> 17 <h2>Overview</h2>
18 <p> 18 <p>
19 The analysis server API is a bi-directional client-server 19 The analysis server API is a bi-directional client-server
(...skipping 1017 matching lines...) Expand 10 before | Expand all | Expand 10 after
1037 the list of services passed in an analysis.setSubscriptions 1037 the list of services passed in an analysis.setSubscriptions
1038 request. 1038 request.
1039 </p> 1039 </p>
1040 <params> 1040 <params>
1041 <field name="file"> 1041 <field name="file">
1042 <ref>FilePath</ref> 1042 <ref>FilePath</ref>
1043 <p> 1043 <p>
1044 The file with which the outline is associated. 1044 The file with which the outline is associated.
1045 </p> 1045 </p>
1046 </field> 1046 </field>
1047 <field name="kind">
1048 <ref>FileKind</ref>
1049 <p>
1050 The kind of the file.
Paul Berry 2015/10/01 16:37:43 We should clarify what the kind of a file is if th
Brian Wilkerson 2015/10/01 16:41:03 I believe that analyzer currently concludes that t
1051 </p>
1052 </field>
1053 <field name="libraryName" optional="true">
1054 <ref>String</ref>
1055 <p>
1056 The name of the library defined by the file using a 'library'
1057 directive, or referenced by a 'part of' directive.
1058 This field will be omitted if the file has neither 'library'
1059 nor 'part of' directives.
Brian Wilkerson 2015/10/01 16:37:58 This should probably include a statement that the
1060 </p>
1061 </field>
1047 <field name="outline"> 1062 <field name="outline">
1048 <ref>Outline</ref> 1063 <ref>Outline</ref>
1049 <p> 1064 <p>
1050 The outline associated with the file. 1065 The outline associated with the file.
1051 </p> 1066 </p>
1052 </field> 1067 </field>
1053 </params> 1068 </params>
1054 </notification> 1069 </notification>
1055 <notification event="overrides"> 1070 <notification event="overrides">
1056 <p> 1071 <p>
(...skipping 1487 matching lines...) Expand 10 before | Expand all | Expand 10 after
2544 </type> 2559 </type>
2545 <type name="ExecutionService"> 2560 <type name="ExecutionService">
2546 <p> 2561 <p>
2547 An enumeration of the services provided by the execution 2562 An enumeration of the services provided by the execution
2548 domain. 2563 domain.
2549 </p> 2564 </p>
2550 <enum> 2565 <enum>
2551 <value><code>LAUNCH_DATA</code></value> 2566 <value><code>LAUNCH_DATA</code></value>
2552 </enum> 2567 </enum>
2553 </type> 2568 </type>
2569 <type name="FileKind">
2570 <p>
2571 An enumeration of the kinds of files.
2572 </p>
2573 <enum>
2574 <value><code>LIBRARY</code></value>
2575 <value><code>PART</code></value>
2576 </enum>
2577 </type>
2554 <type name="FilePath"> 2578 <type name="FilePath">
2555 <ref>String</ref> 2579 <ref>String</ref>
2556 <p> 2580 <p>
2557 The absolute path of a file. 2581 The absolute path of a file.
2558 </p> 2582 </p>
2559 </type> 2583 </type>
2560 <type name="FoldingKind"> 2584 <type name="FoldingKind">
2561 <p> 2585 <p>
2562 An enumeration of the kinds of folding regions. 2586 An enumeration of the kinds of folding regions.
2563 </p> 2587 </p>
(...skipping 1748 matching lines...) Expand 10 before | Expand all | Expand 10 after
4312 This section contains a list of all of the errors that are 4336 This section contains a list of all of the errors that are
4313 produced by the server and the data that is returned with each. 4337 produced by the server and the data that is returned with each.
4314 </p> 4338 </p>
4315 <p> 4339 <p>
4316 TBD 4340 TBD
4317 </p> 4341 </p>
4318 <h2 class="domain"><a name="index">Index</a></h2> 4342 <h2 class="domain"><a name="index">Index</a></h2>
4319 <index></index> 4343 <index></index>
4320 </body> 4344 </body>
4321 </html> 4345 </html>
OLDNEW
« no previous file with comments | « pkg/analysis_server/tool/spec/generated/java/types/FileKind.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698