(self, amount: int)
| 52 | return f"StackAllocatedPointer(address={self.address}, size={self.size})" # noqa |
| 53 | |
| 54 | def __add__(self, amount: int): |
| 55 | return StackAllocatedPointer( |
| 56 | self.ensure() + amount, |
| 57 | self.size, |
| 58 | self.assigned, |
| 59 | ) |
| 60 | |
| 61 | def __sub__(self, amount: int): |
| 62 | return StackAllocatedPointer( |
nothing calls this directly
no test coverage detected