| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 // | 65 // |
| 66 const String SEARCH_RESULTS = 'search.results'; | 66 const String SEARCH_RESULTS = 'search.results'; |
| 67 | 67 |
| 68 // | 68 // |
| 69 // Edit methods | 69 // Edit methods |
| 70 // | 70 // |
| 71 const String EDIT_GET_ASSISTS = 'edit.getAssists'; | 71 const String EDIT_GET_ASSISTS = 'edit.getAssists'; |
| 72 const String EDIT_GET_AVAILABLE_REFACTORINGS = 'edit.getAvailableRefactorings'; | 72 const String EDIT_GET_AVAILABLE_REFACTORINGS = 'edit.getAvailableRefactorings'; |
| 73 const String EDIT_GET_FIXES = 'edit.getFixes'; | 73 const String EDIT_GET_FIXES = 'edit.getFixes'; |
| 74 const String EDIT_GET_REFACTORING = 'edit.getRefactoring'; | 74 const String EDIT_GET_REFACTORING = 'edit.getRefactoring'; |
| 75 const String EDIT_SORT_MEMBERS = 'edit.sortMembers'; |
| 75 | 76 |
| 76 // | 77 // |
| 77 // Execution methods | 78 // Execution methods |
| 78 // | 79 // |
| 79 const String EXECUTION_CREATE_CONTEXT = 'execution.createContext'; | 80 const String EXECUTION_CREATE_CONTEXT = 'execution.createContext'; |
| 80 const String EXECUTION_DELETE_CONTEXT = 'execution.deleteContext'; | 81 const String EXECUTION_DELETE_CONTEXT = 'execution.deleteContext'; |
| 81 const String EXECUTION_MAP_URI = 'execution.mapUri'; | 82 const String EXECUTION_MAP_URI = 'execution.mapUri'; |
| 82 const String EXECUTION_SET_SUBSCRIPTIONS = 'execution.setSubscriptions'; | 83 const String EXECUTION_SET_SUBSCRIPTIONS = 'execution.setSubscriptions'; |
| 83 | 84 |
| 84 // | 85 // |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 const String STATIC_TYPE = 'staticType'; | 183 const String STATIC_TYPE = 'staticType'; |
| 183 const String SUBCLASSES = 'subclasses'; | 184 const String SUBCLASSES = 'subclasses'; |
| 184 const String SUBSCRIPTIONS = 'subscriptions'; | 185 const String SUBSCRIPTIONS = 'subscriptions'; |
| 185 const String SUGGESTIONS = 'suggestions'; | 186 const String SUGGESTIONS = 'suggestions'; |
| 186 const String SUPERCLASS = 'superclass'; | 187 const String SUPERCLASS = 'superclass'; |
| 187 const String SUPER_CLASS_MEMBER = 'superclassMember'; | 188 const String SUPER_CLASS_MEMBER = 'superclassMember'; |
| 188 const String TARGETS = 'targets'; | 189 const String TARGETS = 'targets'; |
| 189 const String TYPE = 'type'; | 190 const String TYPE = 'type'; |
| 190 const String VALUE = 'value'; | 191 const String VALUE = 'value'; |
| 191 const String VERSION = 'version'; | 192 const String VERSION = 'version'; |
| OLD | NEW |