lib.rs 237 B

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