complete parser, but compile time is slow

This commit is contained in:
Anand Balakrishnan 2023-10-02 17:23:26 -07:00
parent 6632e897ba
commit 3adf2ff723
6 changed files with 482 additions and 14 deletions

View file

@ -1,5 +1,7 @@
//! # Argus logic syntax
#![allow(dead_code)]
mod lexer;
mod parser;
pub use lexer::{lexer, Error as LexError, Span, Token};
pub use parser::{parser, Expr, Interval};