wasm_interp: create execute module

This commit is contained in:
Brian Carroll 2022-11-21 08:28:39 +00:00
parent d038094a51
commit 2ca74e5070
No known key found for this signature in database
GPG key ID: 5C7B2EC4101703C0
4 changed files with 557 additions and 2 deletions

View file

@ -1,6 +1,11 @@
mod call_stack;
mod execute;
mod value_stack;
// Exposed for testing only. Should eventually become private.
pub use call_stack::CallStack;
pub use value_stack::ValueStack;
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum Value {
I32(i32),