waside 0.1.0

An AST for WebAssembly that supports decoding, encoding, and printing.
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::Span;

/// A memory entry.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct Memory {
    /// Source span.
    pub span: Span,
    /// The memory type (limits and address width).
    pub ty: wasmparser::MemoryType,
}