wasm_interp: rename ExecutionState -> Instance to match standard Wasm terminology

This commit is contained in:
Brian Carroll 2022-11-28 20:24:54 +00:00
parent c2a28df6d8
commit c2bf7d68fc
No known key found for this signature in database
GPG key ID: 5C7B2EC4101703C0
5 changed files with 19 additions and 20 deletions

View file

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