use crate::tokens::Token; #[derive(Debug)] pub struct Parser { tokens: Vec, } impl Parser { pub fn new(tokens: Vec) -> Self { Self { tokens } } }