Chromium Code Reviews| Index: pkg/analysis_server/tool/spec/spec_input.html |
| diff --git a/pkg/analysis_server/tool/spec/spec_input.html b/pkg/analysis_server/tool/spec/spec_input.html |
| index c91301133bda9a0dc2e7a15e916024e6b5e44f1b..6e372b6ca167dee4bf613bea46194d4242929f69 100644 |
| --- a/pkg/analysis_server/tool/spec/spec_input.html |
| +++ b/pkg/analysis_server/tool/spec/spec_input.html |
| @@ -6,7 +6,7 @@ |
| </head> |
| <body> |
| <h1>Analysis Server API Specification</h1> |
| - <h1 style="color:#999999">Version <version>1.9.0</version></h1> |
| + <h1 style="color:#999999">Version <version>1.10.0</version></h1> |
| <p> |
| This document contains a specification of the API provided by the |
| analysis server. The API in this document is currently under |
| @@ -1044,6 +1044,21 @@ |
| The file with which the outline is associated. |
| </p> |
| </field> |
| + <field name="kind"> |
| + <ref>FileKind</ref> |
| + <p> |
| + 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
|
| + </p> |
| + </field> |
| + <field name="libraryName" optional="true"> |
| + <ref>String</ref> |
| + <p> |
| + The name of the library defined by the file using a 'library' |
| + directive, or referenced by a 'part of' directive. |
| + This field will be omitted if the file has neither 'library' |
| + nor 'part of' directives. |
|
Brian Wilkerson
2015/10/01 16:37:58
This should probably include a statement that the
|
| + </p> |
| + </field> |
| <field name="outline"> |
| <ref>Outline</ref> |
| <p> |
| @@ -2551,6 +2566,15 @@ |
| <value><code>LAUNCH_DATA</code></value> |
| </enum> |
| </type> |
| + <type name="FileKind"> |
| + <p> |
| + An enumeration of the kinds of files. |
| + </p> |
| + <enum> |
| + <value><code>LIBRARY</code></value> |
| + <value><code>PART</code></value> |
| + </enum> |
| + </type> |
| <type name="FilePath"> |
| <ref>String</ref> |
| <p> |