Files
wasmtime/src/libreader/lib.rs
Jakob Stoklund Olesen 169a2f7542 Simplify the interface to cretonne-reader.
Export a single function: parse_functions() which results a vector of
functions parsed from the source string.

Hide the parser and lexer modules. They are not useful to external
clients.
2016-09-13 11:01:21 -07:00

14 lines
349 B
Rust

//! Cretonne file reader library.
//!
//! The cton_reader library supports reading .cton files. This functionality is needed for testing
//! Cretonne, but is not essential for a JIT compiler.
extern crate cretonne;
pub use parser::{Result, parse_functions};
pub use testcommand::{TestCommand, TestOption};
mod lexer;
mod parser;
mod testcommand;