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

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

Issue 1097083002: add optional importUri to completion suggestion (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 5 years, 8 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/test/integration/protocol_matchers.dart ('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 87c9949ce91c16792f94eb627d2a3136e7720382..0f930cf26201f45c77e62b3ab54cf92719612a6e 100644
--- a/pkg/analysis_server/tool/spec/spec_input.html
+++ b/pkg/analysis_server/tool/spec/spec_input.html
@@ -5,7 +5,7 @@
</head>
<body>
<h1>Analysis Server API Specification</h1>
- <h1 style="color:#999999">Version <version>1.6.0</version></h1>
+ <h1 style="color:#999999">Version <version>1.6.1</version></h1>
<p>
This document contains a specification of the API provided by the
analysis server. The API in this document is currently under
@@ -2200,6 +2200,13 @@
field is omitted if the parameterName field is omitted.
</p>
</field>
+ <field name="importUri" optional="true">
+ <ref>String</ref>
+ <p>
+ The import to be added if the suggestion is out of scope
+ and needs an import to be added to be in scope.
+ </p>
+ </field>
</object>
</type>
<type name="CompletionSuggestionKind">
@@ -2243,7 +2250,14 @@
For suggestions of this kind, the completion is the keyword.
</p>
</value>
- <value><code>NAMED_ARGUMENT</code></value>
+ <value>
+ <code>NAMED_ARGUMENT</code>
+ <p>
+ A named argument for the current callsite is being suggested.
+ For suggestions of this kind, the completion is
+ the named argument identifier including a trailing ':' and space.
+ </p>
+ </value>
<value><code>OPTIONAL_ARGUMENT</code></value>
<value><code>PARAMETER</code></value>
</enum>
« no previous file with comments | « pkg/analysis_server/test/integration/protocol_matchers.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698