| 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. This file is validated by `coverage_test.dart`. | 2 server calls. This file is validated by `coverage_test.dart`. |
| 3 | 3 |
| 4 ## analysis domain | 4 ## analysis domain |
| 5 - [x] analysis.getErrors | 5 - [x] analysis.getErrors |
| 6 - [x] analysis.getHover | 6 - [x] analysis.getHover |
| 7 - [x] analysis.getReachableSources (failing - see #29311) | 7 - [x] analysis.getReachableSources (failing - see #29311) |
| 8 - [x] analysis.getLibraryDependencies (failing - see #29310) | 8 - [x] analysis.getLibraryDependencies (failing - see #29310) |
| 9 - [x] analysis.getNavigation (failing - see #28799) | 9 - [x] analysis.getNavigation (failing - see #28799) |
| 10 - [x] analysis.reanalyze | 10 - [x] analysis.reanalyze |
| 11 - [x] analysis.setAnalysisRoots | 11 - [x] analysis.setAnalysisRoots |
| 12 - [x] analysis.setGeneralSubscriptions | 12 - [x] analysis.setGeneralSubscriptions |
| 13 - [x] analysis.setPriorityFiles | 13 - [x] analysis.setPriorityFiles |
| 14 - [x] analysis.setSubscriptions | 14 - [x] analysis.setSubscriptions |
| 15 - [x] analysis.updateContent | 15 - [x] analysis.updateContent |
| 16 - [x] analysis.updateOptions (failing - see #28800) (deprecated) | 16 - [x] analysis.updateOptions (failing - see #28800) (deprecated) |
| 17 | 17 |
| 18 ## completion domain | 18 ## completion domain |
| 19 - [x] completion.getSuggestions | 19 - [x] completion.getSuggestions |
| 20 | 20 |
| 21 ## diagnostic domain | 21 ## diagnostic domain |
| 22 - [x] diagnostic.getDiagnostics | 22 - [x] diagnostic.getDiagnostics |
| 23 - [x] diagnostic.getServerPort | 23 - [x] diagnostic.getServerPort |
| 24 | 24 |
| 25 ## edit domain | 25 ## edit domain |
| 26 - [x] edit.format | 26 - [x] edit.format |
| 27 - [x] edit.getAssists | 27 - [x] edit.getAssists |
| 28 - [x] edit.getAvailableRefactorings | 28 - [x] edit.getAvailableRefactorings |
| 29 - [x] edit.getFixes | 29 - [x] edit.getFixes |
| 30 - [ ] edit.getPostfixCompletion | 30 - [x] edit.getPostfixCompletion |
| 31 - [x] edit.getRefactoring | 31 - [x] edit.getRefactoring |
| 32 - [x] edit.getStatementCompletion | 32 - [x] edit.getStatementCompletion |
| 33 - [ ] edit.isPostfixCompletionApplicable | 33 - [x] edit.isPostfixCompletionApplicable |
| 34 - [ ] edit.listPostfixCompletionTemplates | 34 - [x] edit.listPostfixCompletionTemplates |
| 35 - [x] edit.sortMembers | 35 - [x] edit.sortMembers |
| 36 - [x] edit.organizeDirectives | 36 - [x] edit.organizeDirectives |
| 37 | 37 |
| 38 ## execution domain | 38 ## execution domain |
| 39 - [x] execution.createContext | 39 - [x] execution.createContext |
| 40 - [x] execution.deleteContext | 40 - [x] execution.deleteContext |
| 41 - [x] execution.mapUri | 41 - [x] execution.mapUri |
| 42 - [x] execution.setSubscriptions | 42 - [x] execution.setSubscriptions |
| 43 | 43 |
| 44 ## search domain | 44 ## search domain |
| 45 - [x] search.findElementReferences | 45 - [x] search.findElementReferences |
| 46 - [x] search.findMemberDeclarations | 46 - [x] search.findMemberDeclarations |
| 47 - [x] search.findMemberReferences | 47 - [x] search.findMemberReferences |
| 48 - [x] search.findTopLevelDeclarations | 48 - [x] search.findTopLevelDeclarations |
| 49 - [x] search.getTypeHierarchy | 49 - [x] search.getTypeHierarchy |
| 50 | 50 |
| 51 ## server domain | 51 ## server domain |
| 52 - [x] server.getVersion | 52 - [x] server.getVersion |
| 53 - [x] server.shutdown | 53 - [x] server.shutdown |
| 54 - [x] server.setSubscriptions | 54 - [x] server.setSubscriptions |
| 55 | 55 |
| 56 ## analytics domain | 56 ## analytics domain |
| 57 - [x] analytics.isEnabled | 57 - [x] analytics.isEnabled |
| 58 - [x] analytics.enable | 58 - [x] analytics.enable |
| 59 - [x] analytics.sendEvent | 59 - [x] analytics.sendEvent |
| 60 - [x] analytics.sendTiming | 60 - [x] analytics.sendTiming |
| OLD | NEW |