| 1286 | |
| 1287 | |
| 1288 | Ref<FlowGraph> Function::CreateFunctionGraph(const FunctionViewType& type, DisassemblySettings* settings) |
| 1289 | { |
| 1290 | BNFlowGraph* graph = BNCreateFunctionGraph(m_object, type.ToAPIObject(), settings ? settings->GetObject() : nullptr); |
| 1291 | return new CoreFlowGraph(graph); |
| 1292 | } |
| 1293 | |
| 1294 | |
| 1295 | map<int64_t, vector<VariableNameAndType>> Function::GetStackLayout() |
nothing calls this directly
no test coverage detected