1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! The evaltrees parser, typechecker, and evaluator.
#![warn(missing_docs)]

#[macro_use]
extern crate display_attr;
extern crate either;
#[macro_use]
extern crate failure;
extern crate lalrpop_util;
#[macro_use]
extern crate lazy_static;
extern crate linked_hash_set;
#[macro_use]
extern crate log;
extern crate regex;
extern crate symbol;

pub mod ast;
pub mod cst;
pub mod eval;
pub mod repl;
pub mod typeck;