(&self, distance: usize)
| 1754 | |
| 1755 | #[inline(always)] |
| 1756 | pub(crate) fn peek(&self, distance: usize) -> &Value<'gc> { |
| 1757 | debug_assert!(self.stack_top > distance, "Stack peek out of bounds"); |
| 1758 | unsafe { self.stack.get_unchecked(self.stack_top - 1 - distance) } |
| 1759 | } |
| 1760 | |
| 1761 | fn pop_stack_n(&mut self, n: usize) -> Vec<Value<'gc>> { |
| 1762 | if n == 0 { |
no outgoing calls
no test coverage detected