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

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

Issue 845553005: Change code completion relevance from CompletionRelevance.LOW/DEFAULT/HIGH to int (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 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
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 61e115ac9ed31ca46e1dd916dafd76e41af03a87..6ad7496f8d5243a01bcf4cca44f9a89ef3ca3d23 100644
--- a/pkg/analysis_server/tool/spec/spec_input.html
+++ b/pkg/analysis_server/tool/spec/spec_input.html
@@ -1909,17 +1909,6 @@
completion request.
</p>
</type>
- <type name="CompletionRelevance">
- <p>
- An enumeration of the relevance of a completion
- suggestion.
- </p>
- <enum>
- <value><code>LOW</code></value>
- <value><code>DEFAULT</code></value>
- <value><code>HIGH</code></value>
- </enum>
- </type>
<type name="CompletionSuggestion">
<p>
A suggestion for how to complete partially entered text. Many
@@ -1934,9 +1923,10 @@
</p>
</field>
<field name="relevance">
- <ref>CompletionRelevance</ref>
+ <ref>int</ref>
<p>
- The relevance of this completion suggestion.
+ The relevance of this completion suggestion
+ where a higher number indicates a higher relevance.
</p>
</field>
<field name="completion">

Powered by Google App Engine
This is Rietveld 408576698