| 255 | } |
| 256 | |
| 257 | pub trait FlowAnalysisResult: core::fmt::Debug + Send { |
| 258 | fn get_argument_value_at_address( |
| 259 | &self, |
| 260 | address: u64, |
| 261 | argument: u8, |
| 262 | ) -> Option<&FlowAnalysisValue>; |
| 263 | } |
| 264 | |
| 265 | #[derive(Debug, Clone, Eq, PartialEq, Hash, Default)] |
| 266 | pub struct Symbol { |
nothing calls this directly
no outgoing calls
no test coverage detected