| 201 | |
| 202 | |
| 203 | HighLevelILInstruction HighLevelILFunction::GetExpr(size_t i, bool asFullAst) |
| 204 | { |
| 205 | if (asFullAst) |
| 206 | return HighLevelILInstruction(this, GetRawExpr(i), i, true, GetInstructionForExpr(i)); |
| 207 | return HighLevelILInstruction(this, GetRawNonASTExpr(i), i, false, GetInstructionForExpr(i)); |
| 208 | } |
| 209 | |
| 210 | |
| 211 | size_t HighLevelILFunction::GetIndexForInstruction(size_t i) const |
nothing calls this directly
no test coverage detected