| 33 | |
| 34 | |
| 35 | Ref<Function> AnalysisContext::GetFunction() |
| 36 | { |
| 37 | BNFunction* func = BNAnalysisContextGetFunction(m_object); |
| 38 | if (!func) |
| 39 | return nullptr; |
| 40 | return new Function(func); |
| 41 | } |
| 42 | |
| 43 | |
| 44 | Ref<LowLevelILFunction> AnalysisContext::GetLowLevelILFunction() |
no outgoing calls
no test coverage detected