summaryrefslogtreecommitdiff
path: root/dhall/src/lib.rs
blob: e07071d3cc05e3f483725a2828d1de85929abda0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#![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;
mod generated_parser;
pub mod lexer;
pub mod parser;
pub mod typecheck;