2020-02-21 12:23:58 +01:00

7 lines
181 B
Rust

//! Reads the AST from a particular data representation; for instance,
//! [`decoders::binary`](binary) reads the [AST](crate::ast)
//! from a binary.
pub mod binary;
pub mod wat;