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

Method body

python/highlevelil.py:1014–1015  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1012class HighLevelILBlock(HighLevelILInstruction):
1013 @property
1014 def body(self) -> List[HighLevelILInstruction]:
1015 return self.get_expr_list(0, 1)
1016
1017 def __iter__(self) -> Generator['HighLevelILInstruction', None, None]:
1018 for expr in self.body:

Callers

nothing calls this directly

Calls 1

get_expr_listMethod · 0.80

Tested by

no test coverage detected