mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 05:49:08 +00:00
wasm_interp: new crate, with a value_stack module
This commit is contained in:
parent
2f709580cd
commit
b0e89dd386
5 changed files with 119 additions and 0 deletions
9
crates/wasm_interp/src/lib.rs
Normal file
9
crates/wasm_interp/src/lib.rs
Normal file
|
@ -0,0 +1,9 @@
|
|||
mod value_stack;
|
||||
|
||||
#[derive(Debug, Clone, Copy)]
|
||||
pub enum Value {
|
||||
I32(i32),
|
||||
I64(i64),
|
||||
F32(f32),
|
||||
F64(f64),
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue