mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 05:49:08 +00:00
wasm_interp: create execute
module
This commit is contained in:
parent
d038094a51
commit
2ca74e5070
4 changed files with 557 additions and 2 deletions
|
@ -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),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue