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

Unified Diff: pkg/analysis_server/tool/spec/generated/java/types/CompletionSuggestionKind.java

Issue 2879273002: Make server use the common protocol classes (Closed)
Patch Set: 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
Index: pkg/analysis_server/tool/spec/generated/java/types/CompletionSuggestionKind.java
diff --git a/pkg/analysis_server/tool/spec/generated/java/types/CompletionSuggestionKind.java b/pkg/analysis_server/tool/spec/generated/java/types/CompletionSuggestionKind.java
index 3cebeab3811260da50478786ff979ef67586e68b..8216ce95b0e912739a941d8ae799b718e09b0dcb 100644
--- a/pkg/analysis_server/tool/spec/generated/java/types/CompletionSuggestionKind.java
+++ b/pkg/analysis_server/tool/spec/generated/java/types/CompletionSuggestionKind.java
@@ -34,14 +34,14 @@ public class CompletionSuggestionKind {
/**
* 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
+ * in import 'myLib.dart' show someMethod;. For suggestions of this kind, the element attribute is
* defined and the completion field is the element's identifier.
*/
public static final String IDENTIFIER = "IDENTIFIER";
/**
- * 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 and the
+ * 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 and the
* completion field is the element's identifier.
*/
public static final String INVOCATION = "INVOCATION";
@@ -52,8 +52,8 @@ public class CompletionSuggestionKind {
public static final String KEYWORD = "KEYWORD";
/**
- * 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.
+ * A named argument for the current call site is being suggested. For suggestions of this kind, the
+ * completion is the named argument identifier including a trailing ':' and a space.
*/
public static final String NAMED_ARGUMENT = "NAMED_ARGUMENT";

Powered by Google App Engine
This is Rietveld 408576698