#![feature(associated_type_defaults)]
#![doc = include_str!("../readme.md")]
#![doc(html_logo_url = "https://raw.githubusercontent.com/oovm/shape-rs/dev/projects/images/Trapezohedron.svg")]
#![doc(html_favicon_url = "https://raw.githubusercontent.com/oovm/shape-rs/dev/projects/images/Trapezohedron.svg")]
mod array;
mod data;
mod enumerates;
mod external;
mod functions;
pub mod helpers;
mod modules;
mod operations;
mod structures;
mod symbols;
mod tags;
mod types;
mod variants;
pub use self::enumerates::EnumerateType;
mod flags;
mod values;
pub use crate::{
array::ArrayType,
data::DataItem,
external::ExternalType,
flags::{EncodingType, FlagType},
functions::{FunctionBody, FunctionType, ParameterType},
modules::{WasmBuilder, WasmItem},
operations::{
branch::{EnumerationTable, JumpBranch, JumpCondition, JumpTable},
Operation, VariableKind,
},
structures::{FieldType, StructureItem},
symbols::WasmSymbol,
types::{external::ExternalSection, WasmType},
values::{data::DataSection, variable::WasmVariable, WasmValue},
variants::VariantType,
};