| 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 const String SEARCH_GET_TYPE_HIERARCHY = 'search.getTypeHierarchy'; | 61 const String SEARCH_GET_TYPE_HIERARCHY = 'search.getTypeHierarchy'; |
| 62 | 62 |
| 63 // | 63 // |
| 64 // Search notifications | 64 // Search notifications |
| 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_APPLY_REFACTORING = 'edit.applyRefactoring'; | |
| 72 const String EDIT_CREATE_REFACTORING = 'edit.createRefactoring'; | |
| 73 const String EDIT_DELETE_REFACTORING = 'edit.deleteRefactoring'; | |
| 74 const String EDIT_GET_ASSISTS = 'edit.getAssists'; | 71 const String EDIT_GET_ASSISTS = 'edit.getAssists'; |
| 72 const String EDIT_GET_AVAILABLE_REFACTORINGS = 'edit.getAvailableRefactorings'; |
| 75 const String EDIT_GET_FIXES = 'edit.getFixes'; | 73 const String EDIT_GET_FIXES = 'edit.getFixes'; |
| 76 const String EDIT_GET_REFACTORINGS = 'edit.getRefactorings'; | 74 const String EDIT_GET_REFACTORING = 'edit.getRefactoring'; |
| 77 const String EDIT_SET_REFACTORING_OPTIONS = 'edit.setRefactoringOptions'; | |
| 78 | 75 |
| 79 // | 76 // |
| 80 // Analysis option names | 77 // Analysis option names |
| 81 // | 78 // |
| 82 const String ANALYZE_ANGULAR = 'analyzeAngular'; // boolean | 79 const String ANALYZE_ANGULAR = 'analyzeAngular'; // boolean |
| 83 const String ANALYZE_POLYMER = 'analyzePolymer'; // boolean | 80 const String ANALYZE_POLYMER = 'analyzePolymer'; // boolean |
| 84 const String ENABLE_ASYNC = 'enableAsync'; // boolean | 81 const String ENABLE_ASYNC = 'enableAsync'; // boolean |
| 85 const String ENABLE_DEFERRED_LOADING = 'enableDeferredLoading'; // boolean | 82 const String ENABLE_DEFERRED_LOADING = 'enableDeferredLoading'; // boolean |
| 86 const String ENABLE_ENUMS = 'enableEnums'; // boolean | 83 const String ENABLE_ENUMS = 'enableEnums'; // boolean |
| 87 const String GENERATE_DART2JS_HINTS = 'generateDart2jsHints'; // boolean | 84 const String GENERATE_DART2JS_HINTS = 'generateDart2jsHints'; // boolean |
| 88 const String GENERATE_HINTS = 'generateHints'; // boolean | 85 const String GENERATE_HINTS = 'generateHints'; // boolean |
| OLD | NEW |