| OLD | NEW |
| 1 Checklist to ensure that we have integration test coverage of all analysis | 1 Checklist to ensure that we have integration test coverage of all analysis |
| 2 server calls. | 2 server calls. |
| 3 | 3 |
| 4 This file is validated by `coverage_test.dart`. | 4 This file is validated by `coverage_test.dart`. |
| 5 | 5 |
| 6 TODO(devoncarew): We should track analysis server notifications here as well. | 6 TODO(devoncarew): We should track analysis server notifications here as well. |
| 7 | 7 |
| 8 ## server domain | |
| 9 - [x] server.getVersion | |
| 10 - [x] server.shutdown | |
| 11 - [x] server.setSubscriptions | |
| 12 | |
| 13 ## analysis domain | 8 ## analysis domain |
| 14 - [x] analysis.getErrors | 9 - [x] analysis.getErrors |
| 15 - [x] analysis.getHover | 10 - [x] analysis.getHover |
| 16 - [ ] analysis.getReachableSources | 11 - [ ] analysis.getReachableSources |
| 17 - [ ] analysis.getLibraryDependencies | 12 - [ ] analysis.getLibraryDependencies |
| 18 - [x] analysis.getNavigation (failing - see #28799) | 13 - [x] analysis.getNavigation (failing - see #28799) |
| 19 - [x] analysis.reanalyze | 14 - [x] analysis.reanalyze |
| 20 - [x] analysis.setAnalysisRoots | 15 - [x] analysis.setAnalysisRoots |
| 21 - [ ] analysis.setGeneralSubscriptions | 16 - [ ] analysis.setGeneralSubscriptions |
| 22 - [ ] analysis.setPriorityFiles | 17 - [ ] analysis.setPriorityFiles |
| 23 - [x] analysis.setSubscriptions | 18 - [x] analysis.setSubscriptions |
| 24 - [x] analysis.updateContent | 19 - [x] analysis.updateContent |
| 25 - [x] analysis.updateOptions (failing - see #28800) | 20 - [x] analysis.updateOptions (failing - see #28800) |
| 26 | 21 |
| 27 ## completion domain | 22 ## completion domain |
| 28 - [x] completion.getSuggestions | 23 - [x] completion.getSuggestions |
| 29 | 24 |
| 30 ## search domain | 25 ## diagnostic domain |
| 31 - [ ] search.findElementReferences | 26 - [x] diagnostic.getDiagnostics |
| 32 - [ ] search.findMemberDeclarations | 27 - [x] diagnostic.getServerPort |
| 33 - [ ] search.findMemberReferences | |
| 34 - [ ] search.findTopLevelDeclarations | |
| 35 - [x] search.getTypeHierarchy | |
| 36 | 28 |
| 37 ## edit domain | 29 ## edit domain |
| 38 - [x] edit.format | 30 - [x] edit.format |
| 39 - [ ] edit.getAssists | 31 - [ ] edit.getAssists |
| 40 - [ ] edit.getAvailableRefactorings | 32 - [ ] edit.getAvailableRefactorings |
| 41 - [ ] edit.getFixes | 33 - [ ] edit.getFixes |
| 42 - [ ] edit.getRefactoring | 34 - [ ] edit.getRefactoring |
| 43 - [x] edit.sortMembers | 35 - [x] edit.sortMembers |
| 44 - [x] edit.organizeDirectives | 36 - [x] edit.organizeDirectives |
| 45 | 37 |
| 46 ## execution domain | 38 ## execution domain |
| 47 - [x] execution.createContext | 39 - [x] execution.createContext |
| 48 - [x] execution.deleteContext | 40 - [x] execution.deleteContext |
| 49 - [x] execution.mapUri | 41 - [x] execution.mapUri |
| 50 - [x] execution.setSubscriptions (failing - see #28806) | 42 - [x] execution.setSubscriptions (failing - see #28806) |
| 51 | 43 |
| 52 ## diagnostic domain | 44 ## search domain |
| 53 - [x] diagnostic.getDiagnostics | 45 - [ ] search.findElementReferences |
| 54 - [x] diagnostic.getServerPort | 46 - [ ] search.findMemberDeclarations |
| 47 - [ ] search.findMemberReferences |
| 48 - [ ] search.findTopLevelDeclarations |
| 49 - [x] search.getTypeHierarchy |
| 50 |
| 51 ## server domain |
| 52 - [x] server.getVersion |
| 53 - [x] server.shutdown |
| 54 - [x] server.setSubscriptions |
| OLD | NEW |