mirror of
https://github.com/danog/parser.git
synced 2024-11-26 20:04:57 +01:00
fix: formatting
Signed-off-by: azjezz <azjezz@protonmail.com>
This commit is contained in:
parent
2d2ab36083
commit
3ab03bc3e1
@ -154,7 +154,7 @@ impl Lexer {
|
||||
state.next();
|
||||
state.set(StackFrame::ShellExec)?;
|
||||
TokenKind::Backtick
|
||||
},
|
||||
}
|
||||
[b'@', ..] => {
|
||||
state.next();
|
||||
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user