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

Unified Diff: pkg/analysis_server/tool/spec/generated/java/AnalysisServer.java

Issue 2917943002: Postfix completion (Closed)
Patch Set: typo Created 3 years, 6 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/AnalysisServer.java
diff --git a/pkg/analysis_server/tool/spec/generated/java/AnalysisServer.java b/pkg/analysis_server/tool/spec/generated/java/AnalysisServer.java
index 7ec706998597754b8ef4c470f09666f76077d3ff..b0847a0e3be503c56984b6291236c25fa6373c7b 100644
--- a/pkg/analysis_server/tool/spec/generated/java/AnalysisServer.java
+++ b/pkg/analysis_server/tool/spec/generated/java/AnalysisServer.java
@@ -432,6 +432,18 @@ public interface AnalysisServer {
public void edit_getFixes(String file, int offset, GetFixesConsumer consumer);
/**
+ * {@code edit.getPostfixCompletion}
+ *
+ * Get the changes required to convert the postfix template at the given location into the
+ * template's expanded form.
+ *
+ * @param file The file containing the postfix template to be expanded.
+ * @param key The unique name that identifies the template in use.
+ * @param offset The offset used to identify the code to which the template will be applied.
+ */
+ public void edit_getPostfixCompletion(String file, String key, int offset, GetPostfixCompletionConsumer consumer);
+
+ /**
* {@code edit.getRefactoring}
*
* Get the changes required to perform a refactoring.
@@ -468,6 +480,25 @@ public interface AnalysisServer {
public void edit_getStatementCompletion(String file, int offset, GetStatementCompletionConsumer consumer);
/**
+ * {@code edit.isPostfixCompletionApplicable}
+ *
+ * Determine if the request postfix completion template is applicable at the given location in the
+ * given file.
+ *
+ * @param file The file containing the postfix template to be expanded.
+ * @param key The unique name that identifies the template in use.
+ * @param offset The offset used to identify the code to which the template will be applied.
+ */
+ public void edit_isPostfixCompletionApplicable(String file, String key, int offset, IsPostfixCompletionApplicableConsumer consumer);
+
+ /**
+ * {@code edit.listPostfixCompletionTemplates}
+ *
+ * Return a list of all postfix templates currently available.
+ */
+ public void edit_listPostfixCompletionTemplates(ListPostfixCompletionTemplatesConsumer consumer);
+
+ /**
* {@code edit.organizeDirectives}
*
* Organizes all of the directives - removes unused imports and sorts directives of the given Dart

Powered by Google App Engine
This is Rietveld 408576698