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