better ast

This commit is contained in:
LunarAkai 2025-08-07 14:19:26 +02:00
commit 55605d2cd1
4 changed files with 292 additions and 174 deletions

View file

@ -5,7 +5,7 @@ use logos::Logos;
use crate::{
language_frontend::lexer::tokens::Token, language_frontend::abstract_syntax_tree::parser::parser};
use crate::language_frontend::abstract_syntax_tree::ast::{eval, Expression};
use crate::language_frontend::abstract_syntax_tree::ast::{Expr};
mod language_frontend;