MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / hlils

Method hlils

python/mediumlevelil.py:688–695  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

686
687 @property
688 def hlils(self) -> List[highlevelil.HighLevelILInstruction]:
689 exprs = self.function.get_high_level_il_expr_indexes(self.expr_index)
690 result = []
691 if self.function.high_level_il is None:
692 return result
693 for expr in exprs:
694 result.append(highlevelil.HighLevelILInstruction.create(self.function.high_level_il, expr, False))
695 return result
696
697 @property
698 def ssa_memory_version(self) -> int:

Callers

nothing calls this directly

Calls 3

appendMethod · 0.45
createMethod · 0.45

Tested by

no test coverage detected