chore: fmt

This commit is contained in:
Erin 2022-04-18 21:43:32 +02:00 committed by ondra05
parent f2340dd493
commit ee6105dd91

View file

@ -66,7 +66,10 @@ impl<'source> Parser<'source> {
let start = self.lexer.span().start; let start = self.lexer.span().start;
match token { match token {
Token::Unless => Ok(Spanned::new(self.unless_flow()?, start..self.lexer.span().end)), Token::Unless => Ok(Spanned::new(
self.unless_flow()?,
start..self.lexer.span().end,
)),
Token::Functio => Ok(Spanned::new( Token::Functio => Ok(Spanned::new(
self.functio_flow()?, self.functio_flow()?,
start..self.lexer.span().end, start..self.lexer.span().end,