evaltrees/
lib.rs

1//! The evaltrees parser, typechecker, and evaluator.
2#![warn(missing_docs)]
3
4#[macro_use]
5extern crate display_attr;
6extern crate either;
7#[macro_use]
8extern crate failure;
9extern crate lalrpop_util;
10#[macro_use]
11extern crate lazy_static;
12extern crate linked_hash_set;
13#[macro_use]
14extern crate log;
15extern crate regex;
16extern crate symbol;
17
18pub mod ast;
19pub mod cst;
20pub mod eval;
21pub mod repl;
22pub mod typeck;