lib.rs 209 B

12345678910111213
  1. #[macro_use]
  2. extern crate lalrpop_util;
  3. pub mod ast;
  4. pub mod interp;
  5. #[cfg(test)]
  6. pub mod test {
  7. include!(concat!(env!("OUT_DIR"), "/exp_tests.rs"));
  8. }
  9. lalrpop_mod!(#[allow(clippy::all)] pub grammar);