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

Method llil

python/workflow.py:87–94  ·  view source on GitHub ↗

LowLevelILFunction used to represent Low Level IL (writable)

(self)

Source from the content-addressed store, hash-verified

85
86 @property
87 def llil(self) -> lowlevelil.LowLevelILFunction:
88 """
89 LowLevelILFunction used to represent Low Level IL (writable)
90 """
91 result = core.BNAnalysisContextGetLowLevelILFunction(self.handle)
92 if not result:
93 return None
94 return lowlevelil.LowLevelILFunction(handle=result)
95
96 @llil.setter
97 def llil(self, value: lowlevelil.LowLevelILFunction) -> None:

Callers

nothing calls this directly

Calls 1

LowLevelILFunctionMethod · 0.80

Tested by

no test coverage detected