holey-bytes/src/engine/call_stack.rs
2023-04-22 13:00:19 -05:00

5 lines
76 B
Rust

pub type CallStack = Vec<FnCall>;
pub struct FnCall {
pub ret: usize,
}