1 2 3 4 5 6 7 8 9 10
#![feature(box_syntax)] #![feature(trivial_bounds)] mod errors; mod span; pub use self::{ errors::{NyarError, NyarErrorKind, Result}, span::Span, };