| 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';
|
|
|
|
|