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

Unified Diff: pkg/analyzer_plugin/tool/spec/plugin_spec.html

Issue 2880443006: Generate common types into a separate library (Closed)
Patch Set: add missed files Created 3 years, 7 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/generate_all.dart ('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 d46a8716fdf3c058c313d814f9ba626c0c8fd53b..bc59b04e309bc13dd75b89399cf01ea239cd9ef0 100644
--- a/pkg/analyzer_plugin/tool/spec/plugin_spec.html
+++ b/pkg/analyzer_plugin/tool/spec/plugin_spec.html
@@ -793,7 +793,8 @@
This section contains descriptions of the data types referenced in the API’s
of the various domains.
</p>
- <include path="common_types_spec.html"></include>
+ <include path="common_types_spec.html"
+ import="package:analyzer_plugin/protocol/protocol_common.dart"></include>
<type name="AnalysisErrorFixes">
<p>
A list of fixes associated with a specific error
@@ -1216,34 +1217,44 @@
</p>
<feedback>
<field name="coveringExpressionOffsets" optional="true">
- <list><ref>int</ref></list>
+ <list>
+ <ref>int</ref>
+ </list>
<p>
The offsets of the expressions that cover the specified selection,
from the down most to the up most.
</p>
</field>
<field name="coveringExpressionLengths" optional="true">
- <list><ref>int</ref></list>
+ <list>
+ <ref>int</ref>
+ </list>
<p>
The lengths of the expressions that cover the specified selection,
from the down most to the up most.
</p>
</field>
<field name="names">
- <list><ref>String</ref></list>
+ <list>
+ <ref>String</ref>
+ </list>
<p>
The proposed names for the local variable.
</p>
</field>
<field name="offsets">
- <list><ref>int</ref></list>
+ <list>
+ <ref>int</ref>
+ </list>
<p>
The offsets of the expressions that would be replaced by a reference
to the variable.
</p>
</field>
<field name="lengths">
- <list><ref>int</ref></list>
+ <list>
+ <ref>int</ref>
+ </list>
<p>
The lengths of the expressions that would be replaced by a reference
to the variable. The lengths correspond to the offsets. In other
@@ -1303,7 +1314,9 @@
</p>
</field>
<field name="names">
- <list><ref>String</ref></list>
+ <list>
+ <ref>String</ref>
+ </list>
<p>
The proposed names for the method.
</p>
@@ -1315,20 +1328,26 @@
</p>
</field>
<field name="parameters">
- <list><ref>RefactoringMethodParameter</ref></list>
+ <list>
+ <ref>RefactoringMethodParameter</ref>
+ </list>
<p>
The proposed parameters for the method.
</p>
</field>
<field name="offsets">
- <list><ref>int</ref></list>
+ <list>
+ <ref>int</ref>
+ </list>
<p>
The offsets of the expressions or statements that would be replaced by
an invocation of the method.
</p>
</field>
<field name="lengths">
- <list><ref>int</ref></list>
+ <list>
+ <ref>int</ref>
+ </list>
<p>
The lengths of the expressions or statements that would be replaced by
an invocation of the method. The lengths correspond to the offsets. In
@@ -1359,7 +1378,9 @@
</p>
</field>
<field name="parameters">
- <list><ref>RefactoringMethodParameter</ref></list>
+ <list>
+ <ref>RefactoringMethodParameter</ref>
+ </list>
<p>
The parameters that should be defined for the method.
</p>
« no previous file with comments | « pkg/analyzer_plugin/tool/spec/generate_all.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698