| 1752 | |
| 1753 | |
| 1754 | MediumLevelILInstruction LowLevelILInstructionBase::GetMediumLevelIL() const |
| 1755 | { |
| 1756 | Ref<MediumLevelILFunction> func = function->GetMediumLevelIL(); |
| 1757 | if (!func) |
| 1758 | throw MediumLevelILInstructionAccessException(); |
| 1759 | size_t expr = GetMediumLevelILExprIndex(); |
| 1760 | if (expr >= func->GetExprCount()) |
| 1761 | throw MediumLevelILInstructionAccessException(); |
| 1762 | return func->GetExpr(expr); |
| 1763 | } |
| 1764 | |
| 1765 | |
| 1766 | MediumLevelILInstruction LowLevelILInstructionBase::GetMappedMediumLevelIL() const |
no test coverage detected