Create a PossibleValueSet object for a stack frame offset. :param int offset: Integer value of the offset :rtype: PossibleValueSet
(offset: int)
| 529 | |
| 530 | @staticmethod |
| 531 | def stack_frame_offset(offset: int) -> 'PossibleValueSet': |
| 532 | """ |
| 533 | Create a PossibleValueSet object for a stack frame offset. |
| 534 | |
| 535 | :param int offset: Integer value of the offset |
| 536 | :rtype: PossibleValueSet |
| 537 | """ |
| 538 | result = PossibleValueSet() |
| 539 | result._type = RegisterValueType.StackFrameOffset |
| 540 | result._offset = offset |
| 541 | return result |
| 542 | |
| 543 | @staticmethod |
| 544 | def signed_range_value(ranges: List[ValueRange]) -> 'PossibleValueSet': |
nothing calls this directly
no test coverage detected