v0.3.0 #1

Merged
j merged 12 commits from v0.3.0 into main 2024-02-01 20:11:02 +00:00
Showing only changes of commit af89541af1 - Show all commits

View File

@ -169,7 +169,7 @@ impl<'t> Lexer<'t> {
} }
fn greater(&mut self) -> Option<Token<'t>> { fn greater(&mut self) -> Option<Token<'t>> {
match self.peek() { match self.peek() {
Some('>') => self.then().emit(TokenKind::Lsh), Some('>') => self.then().emit(TokenKind::Rsh),
_ => todo!("greater"), _ => todo!("greater"),
} }
} }