use types::{token::Token, Loc}; mod types; pub struct Parser { tokens: Vec, chars: Vec, loc: Loc, } impl Parser { pub fn new() -> Self { Self { tokens: Vec::new(), chars: Vec::new(), loc: Loc::default(), } } pub fn parse(&mut self, code: String, file_name: String) -> anyhow::Result<()> { self.loc.file = file_name; self.loc.col = 0; self.loc.line = 0; self.chars = code.chars().collect(); // Parse here Ok(()) } /// Pops one token fn next(&mut self) -> Option { if let Some(c) = self.chars.pop() { match c { '\n' => { self.loc.line += 1; self.loc.col = 0; } _ => { self.loc.col += 1; } } return Some(c); } None } pub fn tokens(&self) -> &[Token] { &self.tokens } }