(self)
| 1392 | class HighLevelILAssignUnpack(HighLevelILInstruction, SetVar): |
| 1393 | @property |
| 1394 | def dest(self) -> List[HighLevelILInstruction]: |
| 1395 | return self.get_expr_list(0, 1) |
| 1396 | |
| 1397 | @property |
| 1398 | def src(self) -> HighLevelILInstruction: |
nothing calls this directly
no test coverage detected