| 398 | |
| 399 | |
| 400 | void MediumLevelILFunction::VisitAllExprs( |
| 401 | const function<bool(BasicBlock* block, const MediumLevelILInstruction& expr)>& func) |
| 402 | { |
| 403 | VisitInstructions([&](BasicBlock* block, const MediumLevelILInstruction& instr) { |
| 404 | instr.VisitExprs([&](const MediumLevelILInstruction& expr) { return func(block, expr); }); |
| 405 | }); |
| 406 | } |
| 407 | |
| 408 | |
| 409 | vector<Ref<BasicBlock>> MediumLevelILFunction::GetBasicBlocks() const |
nothing calls this directly
no test coverage detected