| 254 | |
| 255 | #[derive(Debug)] |
| 256 | pub struct Call { |
| 257 | pub caller: String, |
| 258 | pub callee: String, |
| 259 | pub location: Option<Location>, |
| 260 | } |
| 261 | |
| 262 | impl<'file, 'data> DwarfLoader<'file, 'data> { |
| 263 | pub fn new(object: &'file File<'data>) -> Result<Self, Error> { |
no outgoing calls
no test coverage detected