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

Method hlil

python/workflow.py:115–122  ·  view source on GitHub ↗

HighLevelILFunction used to represent High Level IL (writable)

(self)

Source from the content-addressed store, hash-verified

113
114 @property
115 def hlil(self) -> highlevelil.HighLevelILFunction:
116 """
117 HighLevelILFunction used to represent High Level IL (writable)
118 """
119 result = core.BNAnalysisContextGetHighLevelILFunction(self.handle)
120 if not result:
121 return None
122 return highlevelil.HighLevelILFunction(handle=result)
123
124 @hlil.setter
125 def hlil(self, value: highlevelil.HighLevelILFunction) -> None:

Callers

nothing calls this directly

Calls 1

HighLevelILFunctionMethod · 0.80

Tested by

no test coverage detected