(self)
| 345 | return self.physical_sp == self.logical_sp |
| 346 | |
| 347 | def sp_offset(self) -> str: |
| 348 | return (self.physical_sp - self.logical_sp).to_c() |
| 349 | |
| 350 | def as_comment(self) -> str: |
| 351 | variables = ", ".join([v.compact_str() for v in self.variables]) |