2E3D3TGY4B4L6VKJ6WKDHPS4BD5JNJM2I56RHHYZNVABUTGQUTPQC
struct StackFrame<'gc> {
stack: Vec<Gc<'gc, Primitive<'gc>>>,
srl_registers: [Option<Gc<'gc, ListCell<'gc>>>; 255],
inst_ptr: usize,
pub struct StackFrame<'gc> {
/// The stack of a stack frame
pub stack: Vec<Gc<'gc, Primitive<'gc>>>,
/// The SRL registers, mostly used to create self-referential
/// datastructures
pub srl_registers: [Option<Gc<'gc, ListCell<'gc>>>; 255],
/// The instruction pointer of a stack frame
pub inst_ptr: usize,