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

Unified Diff: pkg/analysis_server/lib/src/constants.dart

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/lib/src/constants.dart
diff --git a/pkg/analysis_server/lib/src/constants.dart b/pkg/analysis_server/lib/src/constants.dart
index 1fd07e4b423dd5945f6e29fecefbe299cd9da40f..96ae85b1bfe801a9733116b4c297a44459f5164d 100644
--- a/pkg/analysis_server/lib/src/constants.dart
+++ b/pkg/analysis_server/lib/src/constants.dart
@@ -95,12 +95,19 @@ const String EDIT_FORMAT = 'edit.format';
const String EDIT_GET_ASSISTS = 'edit.getAssists';
const String EDIT_GET_AVAILABLE_REFACTORINGS = 'edit.getAvailableRefactorings';
const String EDIT_GET_FIXES = 'edit.getFixes';
+//const String EDIT_GET_REFACTORING = 'edit.getRefactoring';
+const String EDIT_GET_STATEMENT_COMPLETION = "edit.getStatementCompletion";
+const String EDIT_GET_POSTFIX_COMPLETION = "edit.getPostfixCompletion";
+const String EDIT_IS_POSTFIX_COMPLETION_APPLICABLE =
+ "edit.isPostfixCompletionApplicable";
+const String EDIT_LIST_POSTFIX_COMPLETION_TEMPLATES =
+ "edit.listPostfixCompletionTemplates";
//
// Execution methods
//
const String EDIT_GET_REFACTORING = 'edit.getRefactoring';
-const String EDIT_GET_STATEMENT_COMPLETION = "edit.getStatementCompletion";
+//const String EDIT_GET_STATEMENT_COMPLETION = "edit.getStatementCompletion";
const String EDIT_ORGANIZE_DIRECTIVES = 'edit.organizeDirectives';
const String EDIT_SORT_MEMBERS = 'edit.sortMembers';
« no previous file with comments | « pkg/analysis_server/lib/protocol/protocol_generated.dart ('k') | pkg/analysis_server/lib/src/edit/edit_domain.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698