MCPcopy Index your code
hub / github.com/aiscriptdev/aiscript / print_stack

Method print_stack

aiscript-vm/src/vm/state.rs:1783–1791  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

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
1794impl<'gc> ops::Deref for State<'gc> {

Callers 1

dispatch_nextMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected