summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 8f82c6101c165e2d8902e6f2b0a4d7dfab9de608 (plain)
1
2
3
4
5
6
7
8
9
10
11
#![feature(box_patterns)]

pub mod context;
mod core;
pub use crate::core::*;
use lalrpop_util::lalrpop_mod;
lalrpop_mod!(pub grammar); // synthesized by LALRPOP
mod grammar_util;
pub mod lexer;
pub mod parser;
pub mod typecheck;