| 194 | |
| 195 | |
| 196 | HighLevelILInstruction HighLevelILFunction::GetInstruction(size_t i) |
| 197 | { |
| 198 | size_t expr = GetIndexForInstruction(i); |
| 199 | return HighLevelILInstruction(this, GetRawNonASTExpr(expr), expr, false, i); |
| 200 | } |
| 201 | |
| 202 | |
| 203 | HighLevelILInstruction HighLevelILFunction::GetExpr(size_t i, bool asFullAst) |
nothing calls this directly
no test coverage detected