(self)
| 1282 | class HighLevelILGoto(HighLevelILInstruction, Terminal): |
| 1283 | @property |
| 1284 | def target(self) -> GotoLabel: |
| 1285 | return self.get_label(0) |
| 1286 | |
| 1287 | @property |
| 1288 | def detailed_operands(self) -> List[Tuple[str, HighLevelILOperandType, str]]: |