MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / LookupTableEntry

Class LookupTableEntry

python/variable.py:38–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36
37@dataclass(frozen=True)
38class LookupTableEntry:
39 from_values: List[int]
40 to_value: int
41 type: RegisterValueType = RegisterValueType.LookupTableValue
42
43 def __repr__(self):
44 return f"[{', '.join([f'{i:#x}' for i in self.from_values])}] -> {self.to_value:#x}"
45
46
47@dataclass(frozen=True)

Callers 2

__init__Method · 0.70
_to_core_structMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected