From 0f6f6068ebc33152f57658cf138df0622b44f6a2 Mon Sep 17 00:00:00 2001 From: Mel Date: Mon, 18 Oct 2021 20:37:57 +0200 Subject: Basic expression parsing --- src/parse/mod.rs | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'src/parse/mod.rs') 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>) -> Expression { - todo!() -} +pub mod parser; -- cgit 1.4.1