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

Side by Side Diff: pkg/analysis_server/lib/protocol/protocol_constants.dart

Issue 3001723002: Update edit.importElements response data to support part files (Closed)
Patch Set: Created 3 years, 4 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/protocol/protocol_generated.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) 2017, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2017, 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 // This file has been automatically generated. Please do not edit it manually. 5 // This file has been automatically generated. Please do not edit it manually.
6 // To regenerate the file, use the script 6 // To regenerate the file, use the script
7 // "pkg/analysis_server/tool/spec/generate_files". 7 // "pkg/analysis_server/tool/spec/generate_files".
8 8
9 const String ANALYSIS_NOTIFICATION_ANALYZED_FILES = 'analysis.analyzedFiles'; 9 const String ANALYSIS_NOTIFICATION_ANALYZED_FILES = 'analysis.analyzedFiles';
10 const String ANALYSIS_NOTIFICATION_ANALYZED_FILES_DIRECTORIES = 'directories'; 10 const String ANALYSIS_NOTIFICATION_ANALYZED_FILES_DIRECTORIES = 'directories';
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 const String EDIT_RESPONSE_GET_POSTFIX_COMPLETION_CHANGE = 'change'; 174 const String EDIT_RESPONSE_GET_POSTFIX_COMPLETION_CHANGE = 'change';
175 const String EDIT_RESPONSE_GET_REFACTORING_CHANGE = 'change'; 175 const String EDIT_RESPONSE_GET_REFACTORING_CHANGE = 'change';
176 const String EDIT_RESPONSE_GET_REFACTORING_FEEDBACK = 'feedback'; 176 const String EDIT_RESPONSE_GET_REFACTORING_FEEDBACK = 'feedback';
177 const String EDIT_RESPONSE_GET_REFACTORING_FINAL_PROBLEMS = 'finalProblems'; 177 const String EDIT_RESPONSE_GET_REFACTORING_FINAL_PROBLEMS = 'finalProblems';
178 const String EDIT_RESPONSE_GET_REFACTORING_INITIAL_PROBLEMS = 'initialProblems'; 178 const String EDIT_RESPONSE_GET_REFACTORING_INITIAL_PROBLEMS = 'initialProblems';
179 const String EDIT_RESPONSE_GET_REFACTORING_OPTIONS_PROBLEMS = 'optionsProblems'; 179 const String EDIT_RESPONSE_GET_REFACTORING_OPTIONS_PROBLEMS = 'optionsProblems';
180 const String EDIT_RESPONSE_GET_REFACTORING_POTENTIAL_EDITS = 'potentialEdits'; 180 const String EDIT_RESPONSE_GET_REFACTORING_POTENTIAL_EDITS = 'potentialEdits';
181 const String EDIT_RESPONSE_GET_STATEMENT_COMPLETION_CHANGE = 'change'; 181 const String EDIT_RESPONSE_GET_STATEMENT_COMPLETION_CHANGE = 'change';
182 const String EDIT_RESPONSE_GET_STATEMENT_COMPLETION_WHITESPACE_ONLY = 182 const String EDIT_RESPONSE_GET_STATEMENT_COMPLETION_WHITESPACE_ONLY =
183 'whitespaceOnly'; 183 'whitespaceOnly';
184 const String EDIT_RESPONSE_IMPORT_ELEMENTS_EDITS = 'edits'; 184 const String EDIT_RESPONSE_IMPORT_ELEMENTS_EDIT = 'edit';
185 const String EDIT_RESPONSE_IS_POSTFIX_COMPLETION_APPLICABLE_VALUE = 'value'; 185 const String EDIT_RESPONSE_IS_POSTFIX_COMPLETION_APPLICABLE_VALUE = 'value';
186 const String EDIT_RESPONSE_LIST_POSTFIX_COMPLETION_TEMPLATES_TEMPLATES = 186 const String EDIT_RESPONSE_LIST_POSTFIX_COMPLETION_TEMPLATES_TEMPLATES =
187 'templates'; 187 'templates';
188 const String EDIT_RESPONSE_ORGANIZE_DIRECTIVES_EDIT = 'edit'; 188 const String EDIT_RESPONSE_ORGANIZE_DIRECTIVES_EDIT = 'edit';
189 const String EDIT_RESPONSE_SORT_MEMBERS_EDIT = 'edit'; 189 const String EDIT_RESPONSE_SORT_MEMBERS_EDIT = 'edit';
190 const String EXECUTION_NOTIFICATION_LAUNCH_DATA = 'execution.launchData'; 190 const String EXECUTION_NOTIFICATION_LAUNCH_DATA = 'execution.launchData';
191 const String EXECUTION_NOTIFICATION_LAUNCH_DATA_FILE = 'file'; 191 const String EXECUTION_NOTIFICATION_LAUNCH_DATA_FILE = 'file';
192 const String EXECUTION_NOTIFICATION_LAUNCH_DATA_KIND = 'kind'; 192 const String EXECUTION_NOTIFICATION_LAUNCH_DATA_KIND = 'kind';
193 const String EXECUTION_NOTIFICATION_LAUNCH_DATA_REFERENCED_FILES = 193 const String EXECUTION_NOTIFICATION_LAUNCH_DATA_REFERENCED_FILES =
194 'referencedFiles'; 194 'referencedFiles';
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 const String SERVER_NOTIFICATION_ERROR_MESSAGE = 'message'; 249 const String SERVER_NOTIFICATION_ERROR_MESSAGE = 'message';
250 const String SERVER_NOTIFICATION_ERROR_STACK_TRACE = 'stackTrace'; 250 const String SERVER_NOTIFICATION_ERROR_STACK_TRACE = 'stackTrace';
251 const String SERVER_NOTIFICATION_STATUS = 'server.status'; 251 const String SERVER_NOTIFICATION_STATUS = 'server.status';
252 const String SERVER_NOTIFICATION_STATUS_ANALYSIS = 'analysis'; 252 const String SERVER_NOTIFICATION_STATUS_ANALYSIS = 'analysis';
253 const String SERVER_NOTIFICATION_STATUS_PUB = 'pub'; 253 const String SERVER_NOTIFICATION_STATUS_PUB = 'pub';
254 const String SERVER_REQUEST_GET_VERSION = 'server.getVersion'; 254 const String SERVER_REQUEST_GET_VERSION = 'server.getVersion';
255 const String SERVER_REQUEST_SET_SUBSCRIPTIONS = 'server.setSubscriptions'; 255 const String SERVER_REQUEST_SET_SUBSCRIPTIONS = 'server.setSubscriptions';
256 const String SERVER_REQUEST_SET_SUBSCRIPTIONS_SUBSCRIPTIONS = 'subscriptions'; 256 const String SERVER_REQUEST_SET_SUBSCRIPTIONS_SUBSCRIPTIONS = 'subscriptions';
257 const String SERVER_REQUEST_SHUTDOWN = 'server.shutdown'; 257 const String SERVER_REQUEST_SHUTDOWN = 'server.shutdown';
258 const String SERVER_RESPONSE_GET_VERSION_VERSION = 'version'; 258 const String SERVER_RESPONSE_GET_VERSION_VERSION = 'version';
OLDNEW
« no previous file with comments | « no previous file | pkg/analysis_server/lib/protocol/protocol_generated.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698