wasm_interp: implement calls with arguments

This commit is contained in:
Brian Carroll 2022-11-23 22:01:36 +00:00
parent 3aeab0dbd7
commit 6523b38847
No known key found for this signature in database
GPG key ID: 5C7B2EC4101703C0
5 changed files with 160 additions and 74 deletions

View file

@ -4,5 +4,5 @@ mod value_stack;
// Exposed for testing only. Should eventually become private.
pub use call_stack::CallStack;
pub use execute::ExecutionState;
pub use execute::{Action, ExecutionState};
pub use value_stack::ValueStack;