| 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. |
| 7 |
| 6 ## server domain | 8 ## server domain |
| 7 - [x] server.getVersion | 9 - [x] server.getVersion |
| 8 - [x] server.shutdown | 10 - [x] server.shutdown |
| 9 - [x] server.setSubscriptions | 11 - [x] server.setSubscriptions |
| 10 | 12 |
| 11 ## analysis domain | 13 ## analysis domain |
| 12 - [x] analysis.getErrors | 14 - [x] analysis.getErrors |
| 13 - [x] analysis.getHover | 15 - [x] analysis.getHover |
| 14 - [ ] analysis.getReachableSources | 16 - [ ] analysis.getReachableSources |
| 15 - [ ] analysis.getLibraryDependencies | 17 - [ ] analysis.getLibraryDependencies |
| (...skipping 15 matching lines...) Expand all Loading... |
| 31 - [ ] search.findMemberReferences | 33 - [ ] search.findMemberReferences |
| 32 - [ ] search.findTopLevelDeclarations | 34 - [ ] search.findTopLevelDeclarations |
| 33 - [x] search.getTypeHierarchy | 35 - [x] search.getTypeHierarchy |
| 34 | 36 |
| 35 ## edit domain | 37 ## edit domain |
| 36 - [x] edit.format | 38 - [x] edit.format |
| 37 - [ ] edit.getAssists | 39 - [ ] edit.getAssists |
| 38 - [ ] edit.getAvailableRefactorings | 40 - [ ] edit.getAvailableRefactorings |
| 39 - [ ] edit.getFixes | 41 - [ ] edit.getFixes |
| 40 - [ ] edit.getRefactoring | 42 - [ ] edit.getRefactoring |
| 41 - [ ] edit.sortMembers | 43 - [x] edit.sortMembers |
| 42 - [ ] edit.organizeDirectives | 44 - [x] edit.organizeDirectives |
| 43 | 45 |
| 44 ## execution domain | 46 ## execution domain |
| 45 - [x] execution.createContext | 47 - [x] execution.createContext |
| 46 - [x] execution.deleteContext | 48 - [x] execution.deleteContext |
| 47 - [x] execution.mapUri | 49 - [x] execution.mapUri |
| 48 - [ ] execution.setSubscriptions | 50 - [ ] execution.setSubscriptions |
| 49 | 51 |
| 50 ## diagnostic domain | 52 ## diagnostic domain |
| 51 - [x] diagnostic.getDiagnostics | 53 - [x] diagnostic.getDiagnostics |
| OLD | NEW |