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

Method hlils

python/lowlevelil.py:692–700  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

690
691 @property
692 def hlils(self) -> List['highlevelil.HighLevelILInstruction']:
693 result = set()
694 for mlil_expr in self.mlils:
695 for hlil_expr in mlil_expr.hlils:
696 try:
697 result.add(hlil_expr)
698 except:
699 assert False, f"mlil_expr.hlils returned list of lists: {hlil_expr} {type(hlil_expr)}"
700 return list(result)
701
702 @property
703 def value(self) -> 'variable.RegisterValue':

Callers

nothing calls this directly

Calls 1

addMethod · 0.45

Tested by

no test coverage detected