Value of expression if constant or a known value (read-only)
(self)
| 701 | |
| 702 | @property |
| 703 | def value(self) -> 'variable.RegisterValue': |
| 704 | """Value of expression if constant or a known value (read-only)""" |
| 705 | value = core.BNGetLowLevelILExprValue(self.function.handle, self.expr_index) |
| 706 | return variable.RegisterValue.from_BNRegisterValue(value, self.function.arch) |
| 707 | |
| 708 | @property |
| 709 | def possible_values(self) -> 'variable.PossibleValueSet': |
nothing calls this directly
no test coverage detected