| 443 | |
| 444 | |
| 445 | Ref<LowLevelILFunction> Function::GetLowLevelIL() const |
| 446 | { |
| 447 | BNLowLevelILFunction* function = BNGetFunctionLowLevelIL(m_object); |
| 448 | if (!function) |
| 449 | return nullptr; |
| 450 | return new LowLevelILFunction(function); |
| 451 | } |
| 452 | |
| 453 | |
| 454 | Ref<LowLevelILFunction> Function::GetLowLevelILIfAvailable() const |
no outgoing calls
no test coverage detected