| 909 | |
| 910 | |
| 911 | Ref<HighLevelILFunction> Function::GetHighLevelILIfAvailable() const |
| 912 | { |
| 913 | BNHighLevelILFunction* function = BNGetFunctionHighLevelILIfAvailable(m_object); |
| 914 | if (!function) |
| 915 | return nullptr; |
| 916 | return new HighLevelILFunction(function); |
| 917 | } |
| 918 | |
| 919 | |
| 920 | Ref<LanguageRepresentationFunction> Function::GetLanguageRepresentation(const string& language) const |
no outgoing calls
no test coverage detected