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

Side by Side Diff: pkg/analysis_server/lib/src/constants.dart

Issue 2917943002: Postfix completion (Closed)
Patch Set: Make .try work on entire lines 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // 5 //
6 // Server methods 6 // Server methods
7 // 7 //
8 const String ADD = 'add'; 8 const String ADD = 'add';
9 const String ADDED = 'added'; 9 const String ADDED = 'added';
10 const String ANALYSIS_ANALYZED_FILES = 'analysis.analyzedFiles'; 10 const String ANALYSIS_ANALYZED_FILES = 'analysis.analyzedFiles';
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 const String DIAGNOSTIC_GET_SERVER_PORT = 'diagnostic.getServerPort'; 88 const String DIAGNOSTIC_GET_SERVER_PORT = 'diagnostic.getServerPort';
89 const String DISPLAY_NAME = 'displayName'; 89 const String DISPLAY_NAME = 'displayName';
90 90
91 // 91 //
92 // Analytics methods 92 // Analytics methods
93 // 93 //
94 const String EDIT_FORMAT = 'edit.format'; 94 const String EDIT_FORMAT = 'edit.format';
95 const String EDIT_GET_ASSISTS = 'edit.getAssists'; 95 const String EDIT_GET_ASSISTS = 'edit.getAssists';
96 const String EDIT_GET_AVAILABLE_REFACTORINGS = 'edit.getAvailableRefactorings'; 96 const String EDIT_GET_AVAILABLE_REFACTORINGS = 'edit.getAvailableRefactorings';
97 const String EDIT_GET_FIXES = 'edit.getFixes'; 97 const String EDIT_GET_FIXES = 'edit.getFixes';
98 //const String EDIT_GET_REFACTORING = 'edit.getRefactoring';
99 const String EDIT_GET_STATEMENT_COMPLETION = "edit.getStatementCompletion";
100 const String EDIT_GET_POSTFIX_COMPLETION = "edit.getPostfixCompletion";
101 const String EDIT_IS_POSTFIX_COMPLETION_APPLICABLE =
102 "edit.isPostfixCompletionApplicable";
103 const String EDIT_LIST_POSTFIX_COMPLETION_TEMPLATES =
104 "edit.listPostfixCompletionTemplates";
98 105
99 // 106 //
100 // Execution methods 107 // Execution methods
101 // 108 //
102 const String EDIT_GET_REFACTORING = 'edit.getRefactoring'; 109 const String EDIT_GET_REFACTORING = 'edit.getRefactoring';
103 const String EDIT_GET_STATEMENT_COMPLETION = "edit.getStatementCompletion"; 110 //const String EDIT_GET_STATEMENT_COMPLETION = "edit.getStatementCompletion";
104 const String EDIT_ORGANIZE_DIRECTIVES = 'edit.organizeDirectives'; 111 const String EDIT_ORGANIZE_DIRECTIVES = 'edit.organizeDirectives';
105 const String EDIT_SORT_MEMBERS = 'edit.sortMembers'; 112 const String EDIT_SORT_MEMBERS = 'edit.sortMembers';
106 113
107 // 114 //
108 // Execution notifications 115 // Execution notifications
109 // 116 //
110 const String EDITS = 'edits'; 117 const String EDITS = 'edits';
111 118
112 // 119 //
113 // Analysis option names 120 // Analysis option names
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 const String STATIC_TYPE = 'staticType'; 212 const String STATIC_TYPE = 'staticType';
206 const String SUBCLASSES = 'subclasses'; 213 const String SUBCLASSES = 'subclasses';
207 const String SUBSCRIPTIONS = 'subscriptions'; 214 const String SUBSCRIPTIONS = 'subscriptions';
208 const String SUGGESTIONS = 'suggestions'; 215 const String SUGGESTIONS = 'suggestions';
209 const String SUPER_CLASS_MEMBER = 'superclassMember'; 216 const String SUPER_CLASS_MEMBER = 'superclassMember';
210 const String SUPERCLASS = 'superclass'; 217 const String SUPERCLASS = 'superclass';
211 const String TARGETS = 'targets'; 218 const String TARGETS = 'targets';
212 const String TYPE = 'type'; 219 const String TYPE = 'type';
213 const String VALUE = 'value'; 220 const String VALUE = 'value';
214 const String VERSION = 'version'; 221 const String VERSION = 'version';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698