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

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

Issue 2803313002: Statement completion framework with a few examples (Closed)
Patch Set: Address review comments Created 3 years, 8 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
« no previous file with comments | « no previous file | pkg/analysis_server/lib/src/edit/edit_domain.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 library server.constants; 5 library server.constants;
6 6
7 // 7 //
8 // Server methods 8 // Server methods
9 // 9 //
10 const String ADD = 'add'; 10 const String ADD = 'add';
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 // 75 //
76 // Edit methods 76 // Edit methods
77 // 77 //
78 const String CORRECTION = 'correction'; 78 const String CORRECTION = 'correction';
79 const String DART_DOC = 'dartdoc'; 79 const String DART_DOC = 'dartdoc';
80 const String DEFAULT = 'default'; 80 const String DEFAULT = 'default';
81 const String DISPLAY_NAME = 'displayName'; 81 const String DISPLAY_NAME = 'displayName';
82 const String EDIT_FORMAT = 'edit.format'; 82 const String EDIT_FORMAT = 'edit.format';
83 const String EDIT_GET_ASSISTS = 'edit.getAssists'; 83 const String EDIT_GET_ASSISTS = 'edit.getAssists';
84 const String EDIT_GET_AVAILABLE_REFACTORINGS = 'edit.getAvailableRefactorings'; 84 const String EDIT_GET_AVAILABLE_REFACTORINGS = 'edit.getAvailableRefactorings';
85 const String EDIT_GET_STATEMENT_COMPLETION = "edit.getStatementCompletion";
85 86
86 // 87 //
87 // Execution methods 88 // Execution methods
88 // 89 //
89 const String EDIT_GET_FIXES = 'edit.getFixes'; 90 const String EDIT_GET_FIXES = 'edit.getFixes';
90 const String EDIT_GET_REFACTORING = 'edit.getRefactoring'; 91 const String EDIT_GET_REFACTORING = 'edit.getRefactoring';
91 const String EDIT_ORGANIZE_DIRECTIVES = 'edit.organizeDirectives'; 92 const String EDIT_ORGANIZE_DIRECTIVES = 'edit.organizeDirectives';
92 const String EDIT_SORT_MEMBERS = 'edit.sortMembers'; 93 const String EDIT_SORT_MEMBERS = 'edit.sortMembers';
93 94
94 // 95 //
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 const String STATIC_TYPE = 'staticType'; 199 const String STATIC_TYPE = 'staticType';
199 const String SUBCLASSES = 'subclasses'; 200 const String SUBCLASSES = 'subclasses';
200 const String SUBSCRIPTIONS = 'subscriptions'; 201 const String SUBSCRIPTIONS = 'subscriptions';
201 const String SUGGESTIONS = 'suggestions'; 202 const String SUGGESTIONS = 'suggestions';
202 const String SUPER_CLASS_MEMBER = 'superclassMember'; 203 const String SUPER_CLASS_MEMBER = 'superclassMember';
203 const String SUPERCLASS = 'superclass'; 204 const String SUPERCLASS = 'superclass';
204 const String TARGETS = 'targets'; 205 const String TARGETS = 'targets';
205 const String TYPE = 'type'; 206 const String TYPE = 'type';
206 const String VALUE = 'value'; 207 const String VALUE = 'value';
207 const String VERSION = 'version'; 208 const String VERSION = 'version';
OLDNEW
« no previous file with comments | « no previous file | pkg/analysis_server/lib/src/edit/edit_domain.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698