wasm/execution/mod.rs
1use const_interpreter_loop::run_const_span;
2use value_stack::Stack;
3
4use crate::execution::assert_validated::UnwrapValidatedExt;
5
6pub(crate) mod assert_validated;
7pub mod config;
8pub mod const_interpreter_loop;
9pub mod error;
10mod interpreter_loop;
11pub(crate) mod little_endian;
12pub mod resumable;
13pub mod store;
14pub mod value;
15pub mod value_stack;