summaryrefslogtreecommitdiff
path: root/dhall_core/src/grammar_util.rs
blob: 2547e94f8826fb3f5ebcb70c2f1b88e558c7b3cb (plain)
1
2
3
4
use crate::core::{Expr, Import, X};

pub type ParsedExpr<'i> = Expr<&'i str, X, Import>;
pub type BoxExpr<'i> = Box<ParsedExpr<'i>>;