(self)
| 1012 | class 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: |
nothing calls this directly
no test coverage detected