Nullable pointer and loop inlining tests. #22

Closed
peony wants to merge 7 commits from peony/holey-bytes:trunk into trunk
Showing only changes of commit fc12bf1723 - Show all commits

View file

@ -136,7 +136,7 @@ impl<'a, 'b> Parser<'a, 'b> {
f f
} }
fn next(&mut self) -> Token { fn next(&mut self) -> Token {
core::mem::replace(&mut self.token, self.lexer.eat()) core::mem::replace(&mut self.token, self.lexer.eat())
} }