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

Unified 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, 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« 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