(self, offset: u32)
| 412 | impl FrameStateSlotOffset { |
| 413 | #[cfg(feature = "compile")] |
| 414 | pub(crate) fn add(self, offset: u32) -> FrameStateSlotOffset { |
| 415 | FrameStateSlotOffset(self.0 + offset) |
| 416 | } |
| 417 | |
| 418 | /// Get the offset into the state stackslot, suitable for use in a |
| 419 | /// `stack_store`/`stack_load` instruction. |
no test coverage detected