(&mut self)
| 48 | |
| 49 | #[inline(always)] |
| 50 | pub(crate) fn pop(&mut self) -> T { |
| 51 | self.data.pop().unwrap_or_else(|| { |
| 52 | cold_path(); |
| 53 | unreachable!("ValueStack underflow, this is a bug"); |
| 54 | }) |
| 55 | } |
| 56 | |
| 57 | #[inline(always)] |
| 58 | pub(crate) fn last(&self) -> &T { |
no outgoing calls