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

Unified Diff: pkg/analyzer_plugin/tool/spec/plugin_spec.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 | « pkg/analyzer_plugin/tool/spec/common_types_spec.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer_plugin/tool/spec/plugin_spec.html
diff --git a/pkg/analyzer_plugin/tool/spec/plugin_spec.html b/pkg/analyzer_plugin/tool/spec/plugin_spec.html
index dc3fe7652e2b92c8a5ca9f24446857feda863f64..d9b11a9eca7f16dcb0be8f4bbc38d0a58d7656fc 100644
--- a/pkg/analyzer_plugin/tool/spec/plugin_spec.html
+++ b/pkg/analyzer_plugin/tool/spec/plugin_spec.html
@@ -829,6 +829,48 @@
</result>
</request>
</domain>
+<domain name="kythe" experimental="true">
+ <p>
+ The kythe domain contains APIs related to generating Dart content in the
+ <a href="http://kythe.io/">Kythe</a> format.
+ </p>
+ <request method="getKytheEntries">
+ <p>
+ Return the list of <tt>KytheEntry</tt> objects for some file, given the
+ current state of the file system populated by "analysis.updateContent".
+ </p>
+ <params>
+ <field name="file">
+ <ref>FilePath</ref>
+ <p>
+ The file containing the code for which the Kythe Entry objects are
+ being requested.
+ </p>
+ </field>
+ </params>
+ <result>
+ <field name="entries">
+ <list>
+ <ref>KytheEntry</ref>
+ </list>
+ <p>
+ The list of <tt>KytheEntry</tt> objects for the queried file.
+ </p>
+ </field>
+ <field name="files">
+ <list>
+ <ref>FilePath</ref>
+ </list>
+ <p>
+ The set of files paths that were required, but not in the file system,
+ to give a complete and accurate Kythe graph for the file. This could
+ be due to a referenced file that does not exist or generated files not
+ being generated or passed before the call to "getKytheEntries".
+ </p>
+ </field>
+ </result>
+ </request>
+</domain>
<types>
<h2 class="domain"><a name="types">Types</a></h2>
<p>
« no previous file with comments | « pkg/analyzer_plugin/tool/spec/common_types_spec.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698