Add a representation of a parsed test case file.

The new exported function `parse_test()` will produce it eventually.
This commit is contained in:
Jakob Stoklund Olesen
2016-09-13 12:18:36 -07:00
parent fcec517fc5
commit 1b6623f068
3 changed files with 52 additions and 1 deletions

View File

@@ -5,9 +5,11 @@
extern crate cretonne;
pub use parser::{Result, parse_functions};
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;