| OLD | NEW |
| 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 SERVER_GET_VERSION = 'server.getVersion'; | 10 const String SERVER_GET_VERSION = 'server.getVersion'; |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 const String SEARCH_RESULTS = 'search.results'; | 72 const String SEARCH_RESULTS = 'search.results'; |
| 73 | 73 |
| 74 // | 74 // |
| 75 // Edit methods | 75 // Edit methods |
| 76 // | 76 // |
| 77 const String EDIT_FORMAT = 'edit.format'; | 77 const String EDIT_FORMAT = 'edit.format'; |
| 78 const String EDIT_GET_ASSISTS = 'edit.getAssists'; | 78 const String EDIT_GET_ASSISTS = 'edit.getAssists'; |
| 79 const String EDIT_GET_AVAILABLE_REFACTORINGS = 'edit.getAvailableRefactorings'; | 79 const String EDIT_GET_AVAILABLE_REFACTORINGS = 'edit.getAvailableRefactorings'; |
| 80 const String EDIT_GET_FIXES = 'edit.getFixes'; | 80 const String EDIT_GET_FIXES = 'edit.getFixes'; |
| 81 const String EDIT_GET_REFACTORING = 'edit.getRefactoring'; | 81 const String EDIT_GET_REFACTORING = 'edit.getRefactoring'; |
| 82 const String EDIT_ORGANIZE_DIRECTIVES = 'edit.organizeDirectives'; |
| 82 const String EDIT_SORT_MEMBERS = 'edit.sortMembers'; | 83 const String EDIT_SORT_MEMBERS = 'edit.sortMembers'; |
| 83 | 84 |
| 84 // | 85 // |
| 85 // Execution methods | 86 // Execution methods |
| 86 // | 87 // |
| 87 const String EXECUTION_CREATE_CONTEXT = 'execution.createContext'; | 88 const String EXECUTION_CREATE_CONTEXT = 'execution.createContext'; |
| 88 const String EXECUTION_DELETE_CONTEXT = 'execution.deleteContext'; | 89 const String EXECUTION_DELETE_CONTEXT = 'execution.deleteContext'; |
| 89 const String EXECUTION_MAP_URI = 'execution.mapUri'; | 90 const String EXECUTION_MAP_URI = 'execution.mapUri'; |
| 90 const String EXECUTION_SET_SUBSCRIPTIONS = 'execution.setSubscriptions'; | 91 const String EXECUTION_SET_SUBSCRIPTIONS = 'execution.setSubscriptions'; |
| 91 | 92 |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 const String STATIC_TYPE = 'staticType'; | 189 const String STATIC_TYPE = 'staticType'; |
| 189 const String SUBCLASSES = 'subclasses'; | 190 const String SUBCLASSES = 'subclasses'; |
| 190 const String SUBSCRIPTIONS = 'subscriptions'; | 191 const String SUBSCRIPTIONS = 'subscriptions'; |
| 191 const String SUGGESTIONS = 'suggestions'; | 192 const String SUGGESTIONS = 'suggestions'; |
| 192 const String SUPERCLASS = 'superclass'; | 193 const String SUPERCLASS = 'superclass'; |
| 193 const String SUPER_CLASS_MEMBER = 'superclassMember'; | 194 const String SUPER_CLASS_MEMBER = 'superclassMember'; |
| 194 const String TARGETS = 'targets'; | 195 const String TARGETS = 'targets'; |
| 195 const String TYPE = 'type'; | 196 const String TYPE = 'type'; |
| 196 const String VALUE = 'value'; | 197 const String VALUE = 'value'; |
| 197 const String VERSION = 'version'; | 198 const String VERSION = 'version'; |
| OLD | NEW |