16 lines
403 B
Rust
16 lines
403 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, parse_test};
|
|
pub use testcommand::{TestCommand, TestOption};
|
|
pub use testfile::TestFile;
|
|
|
|
mod lexer;
|
|
mod parser;
|
|
mod testcommand;
|
|
mod testfile;
|