(self, branch_type: BranchType, target: int = 0, arch: Optional['Architecture'] = None)
| 135 | branches: List[InstructionBranch] = field(default_factory=list) |
| 136 | |
| 137 | def add_branch(self, branch_type: BranchType, target: int = 0, arch: Optional['Architecture'] = None) -> None: |
| 138 | self.branches.append(InstructionBranch(branch_type, target, arch)) |
| 139 | |
| 140 | def __len__(self): |
| 141 | return self.length |
no test coverage detected