(self)
| 1218 | class HighLevelILCase(HighLevelILInstruction): |
| 1219 | @property |
| 1220 | def values(self) -> List[HighLevelILInstruction]: |
| 1221 | return self.get_expr_list(0, 1) |
| 1222 | |
| 1223 | @property |
| 1224 | def body(self) -> HighLevelILInstruction: |
no test coverage detected