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

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: tweak 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..06de8fff576dbd11d6bac9a0e1d997342cf4d93c 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,23 @@
The file with which the outline is associated.
</p>
</field>
+ <field name="kind">
+ <ref>FileKind</ref>
+ <p>
+ The kind of the file.
+ </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. If both
+ "library" and "part of" directives are present, then the
+ "library" directive takes precedence.
+ This field will be omitted if the file has neither "library"
+ nor "part of" directives.
+ </p>
+ </field>
<field name="outline">
<ref>Outline</ref>
<p>
@@ -2551,6 +2568,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