Add a data structure representing a parsed test command.

It's not used for anything yet.
This commit is contained in:
Jakob Stoklund Olesen
2016-09-13 10:51:15 -07:00
parent eeb8f5e4e4
commit d0fb647357
2 changed files with 95 additions and 11 deletions

View File

@@ -1,16 +1,12 @@
// ====------------------------------------------------------------------------------------==== //
//
// Cretonne file reader library.
//
// ====------------------------------------------------------------------------------------==== //
//
// The cton_reader library supports reading and writing .cton files. This functionality is needed
// for testing Cretonne, but is not essential for a JIT compiler.
//
// ====------------------------------------------------------------------------------------==== //
//! 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 testcommand::{TestCommand, TestOption};
pub mod lexer;
pub mod parser;
mod testcommand;