(self)
| 1378 | class LowLevelILJump(LowLevelILInstruction, Terminal): |
| 1379 | @property |
| 1380 | def dest(self) -> LowLevelILInstruction: |
| 1381 | return self._get_expr(0) |
| 1382 | |
| 1383 | @property |
| 1384 | def detailed_operands(self) -> List[Tuple[str, LowLevelILOperandType, str]]: |