(self, settings: Optional['function.DisassemblySettings'] = None)
| 6122 | return med_il.get_high_level_il_expr_index(mlil_expr) |
| 6123 | |
| 6124 | def create_graph(self, settings: Optional['function.DisassemblySettings'] = None) -> flowgraph.CoreFlowGraph: |
| 6125 | if settings is not None: |
| 6126 | settings_obj = settings.handle |
| 6127 | else: |
| 6128 | settings_obj = None |
| 6129 | return flowgraph.CoreFlowGraph(core.BNCreateLowLevelILFunctionGraph(self.handle, settings_obj)) |
| 6130 | |
| 6131 | |
| 6132 | class LowLevelILBasicBlock(basicblock.BasicBlock): |
nothing calls this directly
no test coverage detected