diff options
| author | Mel <einebeere@gmail.com> | 2021-10-18 20:37:57 +0200 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2021-10-18 20:37:57 +0200 |
| commit | 0f6f6068ebc33152f57658cf138df0622b44f6a2 (patch) | |
| tree | 6c67ae6b88fcea74d1ac7105ebf121c2658ffa72 /src/parse/mod.rs | |
| parent | 338bffe40ffea3f7cec94e8da8d96813b7f844ff (diff) | |
| download | rabbithole-0f6f6068ebc33152f57658cf138df0622b44f6a2.tar.zst rabbithole-0f6f6068ebc33152f57658cf138df0622b44f6a2.zip | |
Basic expression parsing
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; |
