fix: formatting

Signed-off-by: azjezz <azjezz@protonmail.com>
This commit is contained in:
azjezz 2022-12-05 12:32:36 +01:00
parent 2d2ab36083
commit 3ab03bc3e1
No known key found for this signature in database
GPG Key ID: B00E0A46B3F1C157
2 changed files with 5 additions and 2 deletions

View File

@ -154,7 +154,7 @@ impl Lexer {
state.next();
state.set(StackFrame::ShellExec)?;
TokenKind::Backtick
},
}
[b'@', ..] => {
state.next();

View File

@ -1264,7 +1264,10 @@ impl Parser {
let path = self.expression(state, Precedence::Lowest)?;
Expression::Include { kind, path: Box::new(path) }
Expression::Include {
kind,
path: Box::new(path),
}
}
_ if is_prefix(&state.current.kind) => {
let op = state.current.kind.clone();