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

Unified Diff: pkg/analysis_server/doc/api.html

Issue 2994103002: Add kythe support to plugins and format the spec files (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pkg/analysis_server/lib/protocol/protocol_generated.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/doc/api.html
diff --git a/pkg/analysis_server/doc/api.html b/pkg/analysis_server/doc/api.html
index 59d6ae528d4de45b78d052b4d00ff927237a3265..8cd63b421e3fd70409a0806cd96f6422211cf0d5 100644
--- a/pkg/analysis_server/doc/api.html
+++ b/pkg/analysis_server/doc/api.html
@@ -2571,8 +2571,6 @@ a:focus, a:hover {
-
-
<dl><dt class="typeDefinition"><a name="type_AddContentOverlay">AddContentOverlay: object</a></dt><dd>
<p>
A directive to begin overlaying the contents of a file. The supplied
@@ -2786,10 +2784,11 @@ a:focus, a:hover {
</p>
</dd></dl></dd><dt class="typeDefinition"><a name="type_ClosingLabel">ClosingLabel: object</a></dt><dd>
<p>
- A label that is associated with a range of code that may be useful to render at the end
- of the range to aid code readability. For example, a constructor call that spans multiple
- lines may result in a closing label to allow the constructor type/name to be rendered
- alongside the closing parenthesis.
+ A label that is associated with a range of code that may be useful to
+ render at the end of the range to aid code readability. For example, a
+ constructor call that spans multiple lines may result in a closing label
+ to allow the constructor type/name to be rendered alongside the closing
+ parenthesis.
</p>
<dl><dt class="field"><b>offset: int</b></dt><dd>
@@ -2805,7 +2804,8 @@ a:focus, a:hover {
</dd><dt class="field"><b>label: String</b></dt><dd>
<p>
- The label associated with this range that should be displayed to the user.
+ The label associated with this range that should be displayed to the
+ user.
</p>
</dd></dl></dd><dt class="typeDefinition"><a name="type_CompletionId">CompletionId: String</a></dt><dd>
@@ -3505,70 +3505,78 @@ a:focus, a:hover {
</p>
</dd></dl></dd><dt class="typeDefinition"><a name="type_KytheEntry">KytheEntry: object</a></dt><dd>
<p>
- This object matches the format and documentation of the Entry object documented in the
- <a href="https://kythe.io/docs/kythe-storage.html#_entry">Kythe Storage Model</a>.
+ This object matches the format and documentation of the Entry object
+ documented in the
+ <a href="https://kythe.io/docs/kythe-storage.html#_entry">Kythe Storage
+ Model</a>.
</p>
<dl><dt class="field"><b>source: <a href="#type_KytheVName">KytheVName</a></b></dt><dd>
-
- <p>
- The ticket of the source node (must not be empty).
- </p>
- </dd><dt class="field"><b>kind: String</b></dt><dd>
-
- <p>
- An edge label (may be empty). The schema defines which labels are meaningful.
- </p>
- </dd><dt class="field"><b>target: <a href="#type_KytheVName">KytheVName</a></b></dt><dd>
-
- <p>
- The ticket of the target node (may be empty).
- </p>
- </dd><dt class="field"><b>fact: String</b></dt><dd>
-
- <p>
- A fact label (must not be empty). The schema defines which fact labels are meaningful.
- </p>
- </dd><dt class="field"><b>value: List&lt;int&gt;</b></dt><dd>
-
- <p>
- The <tt>String</tt> value of the fact (may be empty).
- </p>
- </dd></dl></dd><dt class="typeDefinition"><a name="type_KytheVName">KytheVName: object</a></dt><dd>
+
+ <p>
+ The ticket of the source node (must not be empty).
+ </p>
+ </dd><dt class="field"><b>kind: String</b></dt><dd>
+
+ <p>
+ An edge label (may be empty). The schema defines which labels are
+ meaningful.
+ </p>
+ </dd><dt class="field"><b>target: <a href="#type_KytheVName">KytheVName</a></b></dt><dd>
+
+ <p>
+ The ticket of the target node (may be empty).
+ </p>
+ </dd><dt class="field"><b>fact: String</b></dt><dd>
+
+ <p>
+ A fact label (must not be empty). The schema defines which fact labels
+ are meaningful.
+ </p>
+ </dd><dt class="field"><b>value: List&lt;int&gt;</b></dt><dd>
+
+ <p>
+ The <tt>String</tt> value of the fact (may be empty).
+ </p>
+ </dd></dl></dd><dt class="typeDefinition"><a name="type_KytheVName">KytheVName: object</a></dt><dd>
<p>
- This object matches the format and documentation of the Vector-Name object documented in the
- <a href="https://kythe.io/docs/kythe-storage.html#_a_id_termvname_a_vector_name_strong_vname_strong">Kythe Storage Model</a>.
+ This object matches the format and documentation of the Vector-Name object
+ documented in the
+ <a href="https://kythe.io/docs/kythe-storage.html#_a_id_termvname_a_vector_name_strong_vname_strong">Kythe
+ Storage Model</a>.
</p>
<dl><dt class="field"><b>signature: String</b></dt><dd>
-
- <p>
- An opaque signature generated by the analyzer.
- </p>
- </dd><dt class="field"><b>corpus: String</b></dt><dd>
-
- <p>
- The corpus of source code this <tt>KytheVName</tt> belongs to. Loosely, a corpus is a
- collection of related files, such as the contents of a given source repository.
- </p>
- </dd><dt class="field"><b>root: String</b></dt><dd>
-
- <p>
- A corpus-specific root label, typically a directory path or project identifier, denoting a
- distinct subset of the corpus. This may also be used to designate virtual collections like generated files.
- </p>
- </dd><dt class="field"><b>path: String</b></dt><dd>
-
- <p>
- A path-structured label describing the “location” of the named object relative to the corpus
- and the root.
- </p>
- </dd><dt class="field"><b>language: String</b></dt><dd>
-
- <p>
- The language this name belongs to.
- </p>
- </dd></dl></dd><dt class="typeDefinition"><a name="type_LinkedEditGroup">LinkedEditGroup: object</a></dt><dd>
+
+ <p>
+ An opaque signature generated by the analyzer.
+ </p>
+ </dd><dt class="field"><b>corpus: String</b></dt><dd>
+
+ <p>
+ The corpus of source code this <tt>KytheVName</tt> belongs to.
+ Loosely, a corpus is a collection of related files, such as the
+ contents of a given source repository.
+ </p>
+ </dd><dt class="field"><b>root: String</b></dt><dd>
+
+ <p>
+ A corpus-specific root label, typically a directory path or project
+ identifier, denoting a distinct subset of the corpus. This may also be
+ used to designate virtual collections like generated files.
+ </p>
+ </dd><dt class="field"><b>path: String</b></dt><dd>
+
+ <p>
+ A path-structured label describing the “location” of the named object
+ relative to the corpus and the root.
+ </p>
+ </dd><dt class="field"><b>language: String</b></dt><dd>
+
+ <p>
+ The language this name belongs to.
+ </p>
+ </dd></dl></dd><dt class="typeDefinition"><a name="type_LinkedEditGroup">LinkedEditGroup: object</a></dt><dd>
<p>
A collection of positions that should be linked (edited simultaneously)
for the purposes of updating code after a source change. For example, if a
@@ -3838,7 +3846,8 @@ a:focus, a:hover {
</dd><dt class="field"><b>example: String</b></dt><dd>
<p>
- A short example of the transformation performed when the template is applied.
+ A short example of the transformation performed when the template is
+ applied.
</p>
</dd></dl></dd><dt class="typeDefinition"><a name="type_PubStatus">PubStatus: object</a></dt><dd>
<p>
« no previous file with comments | « no previous file | pkg/analysis_server/lib/protocol/protocol_generated.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698