stak_vm/
stack_slot.rs

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