stak_vm/
stack_slot.rs

1/// A tag of a stack slot.
2pub enum StackSlot {
3    /// A value.
4    Value,
5    /// A procedure frame.
6    Frame,
7}