``mark_label`` assigns a LowLevelILLabel to the current IL address. :param LowLevelILLabel label: :rtype: None
(self, label: LowLevelILLabel)
| 5855 | return ExpressionIndex(core.BNLowLevelILIf(self.handle, operand, t.handle, f.handle)) |
| 5856 | |
| 5857 | def mark_label(self, label: LowLevelILLabel) -> None: |
| 5858 | """ |
| 5859 | ``mark_label`` assigns a LowLevelILLabel to the current IL address. |
| 5860 | |
| 5861 | :param LowLevelILLabel label: |
| 5862 | :rtype: None |
| 5863 | """ |
| 5864 | core.BNLowLevelILMarkLabel(self.handle, label.handle) |
| 5865 | |
| 5866 | def add_label_map(self, labels: Dict[int, LowLevelILLabel], loc: Optional['ILSourceLocation'] = None) -> ExpressionIndex: |
| 5867 | """ |