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

Unified Diff: pkg/analysis_server/tool/spec/spec_input.html

Issue 766323002: Compressed/optimized navigation notification. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years 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
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 1d8e68d125e9c370df90ce34d251c8152aa0b7e7..b4a7202f55a952bc838bbfd4148c8db6f1eac4bf 100644
--- a/pkg/analysis_server/tool/spec/spec_input.html
+++ b/pkg/analysis_server/tool/spec/spec_input.html
@@ -689,6 +689,22 @@
navigation regions.
</p>
</field>
+ <field name="targets">
+ <list><ref>NavigationTarget</ref></list>
+ <p>
+ The navigation targets referenced in the file.
+ They are referenced by <tt>NavigationRegion</tt>s by their
+ index in this array.
+ </p>
+ </field>
+ <field name="targetFiles">
Brian Wilkerson 2014/12/01 21:42:14 How about "files"? The name "targetFiles" is a lit
scheglov 2014/12/01 22:20:32 Done.
+ <list><ref>FilePath</ref></list>
+ <p>
+ The files containing navigation targets referenced in the file.
+ They are referenced by <tt>NavigationTarget</tt>s by their
+ index in this array.
+ </p>
+ </field>
</params>
</notification>
<notification event="occurrences">
@@ -1893,7 +1909,7 @@
<p>
The element identifier should be inserted at the completion location.
For example "someMethod" in import 'myLib.dart' show someMethod; .
- For suggestions of this kind, the element attribute is defined
+ For suggestions of this kind, the element attribute is defined
and the completion field is the element's identifier.
</p>
</value>
@@ -1902,7 +1918,7 @@
<p>
The element is being invoked at the completion location.
For example, "someMethod" in x.someMethod(); .
- For suggestions of this kind, the element attribute is defined
+ For suggestions of this kind, the element attribute is defined
and the completion field is the element's identifier.
</p>
</value>
@@ -2383,12 +2399,58 @@
The length of the region from which the user can navigate.
</p>
</field>
- <field name="targets">
- <list><ref>Element</ref></list>
+ <field name="targetIndexes">
Brian Wilkerson 2014/12/01 21:42:14 I'd rather leave this as "targets". We didn't add
scheglov 2014/12/01 22:20:32 Done.
+ <list><ref>int</ref></list>
+ <p>
+ The indexes of the targets (in the enclosing navigation response)
Paul Berry 2014/12/01 21:50:37 s/indexes/indices/
+ to which the given region is bound. By opening the target, clients
+ can implement one form of navigation.
+ </p>
+ </field>
+ </object>
+ </type>
+ <type name="NavigationTarget">
+ <p>
+ A description of a target to which the user can navigate to.
Brian Wilkerson 2014/12/01 21:42:14 Remove second "to".
scheglov 2014/12/01 22:20:32 Done.
+ </p>
+ <object>
+ <field name="kind">
+ <ref>ElementKind</ref>
+ <p>
+ The kind of the element.
+ </p>
+ </field>
+ <field name="fileIndex">
+ <ref>int</ref>
<p>
- The elements to which the given region is bound. By
- opening the declaration of the elements, clients can
- implement one form of navigation.
+ The index of the file (in the enclosing navigation response) to
+ navigate to.
+ </p>
+ </field>
+ <field name="offset">
+ <ref>int</ref>
+ <p>
+ The offset of the region from which the user can navigate.
+ </p>
+ </field>
+ <field name="length">
+ <ref>int</ref>
+ <p>
+ The length of the region from which the user can navigate.
+ </p>
+ </field>
+ <field name="startLine">
+ <ref>int</ref>
+ <p>
+ The one-based index of the line containing the first
+ character of the region.
+ </p>
+ </field>
+ <field name="startColumn">
+ <ref>int</ref>
+ <p>
+ The one-based index of the column containing the first
+ character of the region.
</p>
</field>
</object>

Powered by Google App Engine
This is Rietveld 408576698