| 46 | } |
| 47 | |
| 48 | pub struct ProjectModule { |
| 49 | pub name: String, |
| 50 | pub functions: Vec<Function>, |
| 51 | pub child_modules: Vec<ProjectModule>, |
| 52 | } |
| 53 | |
| 54 | impl Analysis { |
| 55 | // taken from ra_ap_ide::Analysis to get access to the analysis host |
nothing calls this directly
no outgoing calls
no test coverage detected