rascal_parser/
lib.rs

1extern crate alloc;
2pub mod ast;
3pub mod grammar;
4mod parser;
5pub use parser::*;
6pub(crate) use rascal_scanner as scanner;
7
8#[cfg(test)]
9mod tests {
10    #[test]
11    fn it_works() {
12        assert_eq!(2 + 2, 4);
13    }
14}