| 900 | |
| 901 | |
| 902 | Ref<HighLevelILFunction> Function::GetHighLevelIL() const |
| 903 | { |
| 904 | BNHighLevelILFunction* function = BNGetFunctionHighLevelIL(m_object); |
| 905 | if (!function) |
| 906 | return nullptr; |
| 907 | return new HighLevelILFunction(function); |
| 908 | } |
| 909 | |
| 910 | |
| 911 | Ref<HighLevelILFunction> Function::GetHighLevelILIfAvailable() const |
no outgoing calls
no test coverage detected