| 2211 | |
| 2212 | |
| 2213 | MediumLevelILVariableList MediumLevelILInstruction::GetOutputVariables() const |
| 2214 | { |
| 2215 | size_t operandIndex; |
| 2216 | if (GetOperandIndexForUsage(OutputVariablesMediumLevelOperandUsage, operandIndex)) |
| 2217 | return GetRawOperandAsVariableList(operandIndex); |
| 2218 | if (GetOperandIndexForUsage(OutputVariablesSubExprMediumLevelOperandUsage, operandIndex)) |
| 2219 | return GetRawOperandAsExpr(operandIndex).GetRawOperandAsVariableList(0); |
| 2220 | throw MediumLevelILInstructionAccessException(); |
| 2221 | } |
| 2222 | |
| 2223 | |
| 2224 | MediumLevelILSSAVariableList MediumLevelILInstruction::GetOutputSSAVariables() const |
nothing calls this directly
no test coverage detected