| 11 | /// An index into the table of stack shapes. |
| 12 | #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash)] |
| 13 | pub struct FrameStackShape(pub(crate) u32); |
| 14 | impl FrameStackShape { |
| 15 | pub(crate) fn index(self) -> usize { |
| 16 | usize::try_from(self.0).unwrap() |
no outgoing calls
no test coverage detected