| 786 | |
| 787 | |
| 788 | SSAVariable MediumLevelILOperand::GetSSAVariable() const |
| 789 | { |
| 790 | if (m_type != SSAVariableMediumLevelOperand) |
| 791 | throw MediumLevelILInstructionAccessException(); |
| 792 | if (m_usage == PartialSSAVariableSourceMediumLevelOperandUsage) |
| 793 | return m_instr.GetRawOperandAsPartialSSAVariableSource(m_operandIndex - 2); |
| 794 | return m_instr.GetRawOperandAsSSAVariable(m_operandIndex); |
| 795 | } |
| 796 | |
| 797 | |
| 798 | MediumLevelILIndexList MediumLevelILOperand::GetIndexList() const |
nothing calls this directly
no test coverage detected