1 2 3 4 5 6 7 8 9 10 11 12
//! Crate for pure ast validation logics.
//!
//! Used to reduce compile time.
#![feature(box_syntax)]
#![feature(box_patterns)]
#![feature(specialization)]
#![allow(incomplete_features)]
pub mod ambient_fn;
pub mod constructor;
pub mod yield_check;