- Allows host functions to be imported from Elixir and called within a WebAssembly module
- Creates a new host function DSL that allows for definition of WebAssembly host functions seamlessly in elixir modules
- Fixes a bug where
ifstatements would crash the VM sometimes - Fixes a bug with reading wrapped bytes from memory (i.e. i32.load8_s not working properly)
- Implements data section me...