(&self, _view: &BinaryView, func: &Function)
| 65 | |
| 66 | impl FunctionCommand for DebugFunction { |
| 67 | fn action(&self, _view: &BinaryView, func: &Function) { |
| 68 | if let Ok(llil) = func.low_level_il() { |
| 69 | log::info!("{:#?}", build_function(func, &llil)); |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | fn valid(&self, _view: &BinaryView, _func: &Function) -> bool { |
| 74 | true |
nothing calls this directly
no test coverage detected