| 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 ## analysis domain | 8 ## analysis domain |
| 9 - [x] analysis.getErrors | 9 - [x] analysis.getErrors |
| 10 - [x] analysis.getHover | 10 - [x] analysis.getHover |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 ## diagnostic domain | 25 ## diagnostic domain |
| 26 - [x] diagnostic.getDiagnostics | 26 - [x] diagnostic.getDiagnostics |
| 27 - [x] diagnostic.getServerPort | 27 - [x] diagnostic.getServerPort |
| 28 | 28 |
| 29 ## edit domain | 29 ## edit domain |
| 30 - [x] edit.format | 30 - [x] edit.format |
| 31 - [ ] edit.getAssists | 31 - [ ] edit.getAssists |
| 32 - [ ] edit.getAvailableRefactorings | 32 - [ ] edit.getAvailableRefactorings |
| 33 - [ ] edit.getFixes | 33 - [ ] edit.getFixes |
| 34 - [ ] edit.getRefactoring | 34 - [ ] edit.getRefactoring |
| 35 - [ ] edit.getStatementCompletion |
| 35 - [x] edit.sortMembers | 36 - [x] edit.sortMembers |
| 36 - [x] edit.organizeDirectives | 37 - [x] edit.organizeDirectives |
| 37 | 38 |
| 38 ## execution domain | 39 ## execution domain |
| 39 - [x] execution.createContext | 40 - [x] execution.createContext |
| 40 - [x] execution.deleteContext | 41 - [x] execution.deleteContext |
| 41 - [x] execution.mapUri | 42 - [x] execution.mapUri |
| 42 - [x] execution.setSubscriptions | 43 - [x] execution.setSubscriptions |
| 43 | 44 |
| 44 ## search domain | 45 ## search domain |
| 45 - [x] search.findElementReferences | 46 - [x] search.findElementReferences |
| 46 - [x] search.findMemberDeclarations | 47 - [x] search.findMemberDeclarations |
| 47 - [x] search.findMemberReferences | 48 - [x] search.findMemberReferences |
| 48 - [x] search.findTopLevelDeclarations | 49 - [x] search.findTopLevelDeclarations |
| 49 - [x] search.getTypeHierarchy | 50 - [x] search.getTypeHierarchy |
| 50 | 51 |
| 51 ## server domain | 52 ## server domain |
| 52 - [x] server.getVersion | 53 - [x] server.getVersion |
| 53 - [x] server.shutdown | 54 - [x] server.shutdown |
| 54 - [x] server.setSubscriptions | 55 - [x] server.setSubscriptions |
| OLD | NEW |