1 2 3 4 5 6 7 8 9 10 11 12
use crate::lexing::util::lex_list::LexList; use crate::parsing::arithmetic::parse_addition; pub mod grouping; pub mod arithmetic; pub mod literals; pub fn parse_expression(lex: LexList) { parse_addition(lex); }