(&self)
| 1781 | |
| 1782 | #[cfg(feature = "debug")] |
| 1783 | pub fn print_stack(&self) { |
| 1784 | print!(" "); |
| 1785 | for value in self.stack.iter().take(self.stack_top) { |
| 1786 | print!("[ "); |
| 1787 | print!("{value}"); |
| 1788 | print!(" ]") |
| 1789 | } |
| 1790 | println!(); |
| 1791 | } |
| 1792 | } |
| 1793 | |
| 1794 | impl<'gc> ops::Deref for State<'gc> { |