diff options
Diffstat (limited to 'src/parse/mod.rs')
| -rw-r--r-- | src/parse/mod.rs | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/parse/mod.rs b/src/parse/mod.rs index 2938131..a310c76 100644 --- a/src/parse/mod.rs +++ b/src/parse/mod.rs @@ -1,10 +1,2 @@ pub mod ast; - -use crate::parse::ast::Expression; -use std::iter::Peekable; - -use crate::lex::token::Token; - -pub fn parse(tokens: Peekable<impl Iterator<Item = Token>>) -> Expression { - todo!() -} +pub mod parser; |
