(cls, func: FunctionOrILFunction, identifier: int)
| 748 | |
| 749 | @classmethod |
| 750 | def from_identifier(cls, func: FunctionOrILFunction, identifier: int): |
| 751 | var = core.BNFromVariableIdentifier(identifier) |
| 752 | return cls(func, VariableSourceType(var.type), var.index, var.storage) |
| 753 | |
| 754 | def __repr__(self): |
| 755 | if self.type is not None: |
no outgoing calls
no test coverage detected