7 lines
181 B
Rust
Raw Normal View History

//! Reads the AST from a particular data representation; for instance,
2020-02-21 12:23:58 +01:00
//! [`decoders::binary`](binary) reads the [AST](crate::ast)
//! from a binary.
pub mod binary;
pub mod wat;