core_wasm_ast/
lib.rs

1#![allow(non_camel_case_types)]
2// Allow non camel case types because it's easier to copy paste from the
3// Wasm reference interpreter.
4
5mod ast;
6pub mod traverse;
7
8pub use ast::*;