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

Method medium_level_il

python/lowlevelil.py:3507–3511  ·  view source on GitHub ↗

Medium level IL for this low level IL.

(self)

Source from the content-addressed store, hash-verified

3505
3506 @property
3507 def medium_level_il(self) -> 'mediumlevelil.MediumLevelILFunction':
3508 """Medium level IL for this low level IL."""
3509 result = core.BNGetMediumLevelILForLowLevelIL(self.handle)
3510 assert result is not None, "MLIL not present"
3511 return mediumlevelil.MediumLevelILFunction(self._arch, result, self._source_function)
3512
3513 @property
3514 def mlil(self) -> 'mediumlevelil.MediumLevelILFunction':

Callers

nothing calls this directly

Calls 1

MediumLevelILFunctionMethod · 0.80

Tested by

no test coverage detected