| 2222 | |
| 2223 | |
| 2224 | MediumLevelILSSAVariableList MediumLevelILInstruction::GetOutputSSAVariables() const |
| 2225 | { |
| 2226 | size_t operandIndex; |
| 2227 | if (GetOperandIndexForUsage(OutputSSAVariablesMediumLevelOperandUsage, operandIndex)) |
| 2228 | return GetRawOperandAsSSAVariableList(operandIndex); |
| 2229 | if (GetOperandIndexForUsage(OutputSSAVariablesSubExprMediumLevelOperandUsage, operandIndex)) |
| 2230 | return GetRawOperandAsExpr(operandIndex).GetRawOperandAsSSAVariableList(1); |
| 2231 | throw MediumLevelILInstructionAccessException(); |
| 2232 | } |
| 2233 | |
| 2234 | |
| 2235 | MediumLevelILInstructionList MediumLevelILInstruction::GetParameterExprs() const |
nothing calls this directly
no test coverage detected