| 59 | // CORRECTED: Definition for the global Call Graph now includes the 'graph' field |
| 60 | #[derive(Debug, Default)] |
| 61 | pub struct CallGraph<'a> { |
| 62 | pub graph: HashMap<String, HashSet<String>>, |
| 63 | pub functions: HashMap<String, &'a AstNode>, |
| 64 | pub file_contents: HashMap<String, String>, |
| 65 | } |
nothing calls this directly
no outgoing calls
no test coverage detected