| 552 | |
| 553 | |
| 554 | void HighLevelILFunction::VisitAllExprs(const function<bool(const HighLevelILInstruction& expr)>& func) |
| 555 | { |
| 556 | GetRootExpr().VisitExprs([&](const HighLevelILInstruction& expr) { return func(expr); }); |
| 557 | } |
| 558 | |
| 559 | |
| 560 | Ref<FlowGraph> HighLevelILFunction::CreateFunctionGraph(DisassemblySettings* settings) |
nothing calls this directly
no test coverage detected