holey-bytes/src/engine/call_stack.rs

5 lines
76 B
Rust
Raw Normal View History

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