This commit is contained in:
TerraMaster85 2024-01-16 12:04:44 -05:00
parent d13c9befb2
commit 53eaf000a0
1 changed files with 2 additions and 2 deletions

View File

@ -146,9 +146,9 @@ pub fn lexer(text_source: &str) -> Result<Vec<Token>, Box<dyn Error>> {
}
&_ => { state.current_token.push(c); }
&_ => {}
}
state.current_token.push(c);
}
Ok(state.lexed)