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

Method high_level_il

python/mediumlevelil.py:675–680  ·  view source on GitHub ↗

High level IL form of this expression

(self)

Source from the content-addressed store, hash-verified

673
674 @property
675 def high_level_il(self) -> Optional[highlevelil.HighLevelILInstruction]:
676 """High level IL form of this expression"""
677 expr = self.function.get_high_level_il_expr_index(self.expr_index)
678 if expr is None or self.function.high_level_il is None:
679 return None
680 return highlevelil.HighLevelILInstruction.create(self.function.high_level_il, expr, False)
681
682 @property
683 def hlil(self) -> Optional[highlevelil.HighLevelILInstruction]:

Callers

nothing calls this directly

Calls 2

createMethod · 0.45

Tested by

no test coverage detected