wasm_interp: possible design for imports, using enum dispatch

This commit is contained in:
Brian Carroll 2022-11-30 07:25:38 +00:00
parent d0b2f9c6e1
commit 7ddff49691
No known key found for this signature in database
GPG key ID: 5C7B2EC4101703C0
2 changed files with 183 additions and 0 deletions

View file

@ -2,6 +2,7 @@ mod call_stack;
mod instance;
pub mod test_utils;
mod value_stack;
mod wasi;
// Exposed for testing only. Should eventually become private.
pub use call_stack::CallStack;