Initial commit WIP

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2021-12-21 11:29:59 -08:00
commit 946a927b09
12 changed files with 960 additions and 0 deletions

5
src/syn/parser.rs Normal file
View File

@@ -0,0 +1,5 @@
use crate::syn::lexer::*;
pub struct Parser<'t> {
lexer: Lexer<'t>,
}