holey-bytes/src/engine/call_stack.rs

5 lines
72 B
Rust
Raw Normal View History

2023-04-18 18:08:30 -05:00
pub type CallStack = Vec<FnCall>;
pub struct FnCall {
ret: usize,
}