Update to wasmparser 0.14.1.

This commit is contained in:
Dan Gohman
2018-02-13 20:14:01 -08:00
parent 3ccc3f4f9b
commit 42e1616b82
4 changed files with 85 additions and 2 deletions

View File

@@ -67,6 +67,8 @@ pub struct Memory {
pub pages_count: usize,
/// The maximum number of pages in the memory.
pub maximum: Option<usize>,
/// Whether the memory may be shared between multiple threads.
pub shared: bool,
}
/// Wrapper to a `get_local` and `set_local` index. They are WebAssembly's non-SSA variables.