697 lines
24 KiB
Rust
697 lines
24 KiB
Rust
use nu_protocol::{ParseError, Span};
|
|
|
|
#[derive(Debug, PartialEq, Eq, Clone, Copy)]
|
|
pub enum TokenContents {
|
|
Item,
|
|
Comment,
|
|
Pipe,
|
|
PipePipe,
|
|
AssignmentOperator,
|
|
ErrGreaterPipe,
|
|
OutErrGreaterPipe,
|
|
Semicolon,
|
|
OutGreaterThan,
|
|
OutGreaterGreaterThan,
|
|
ErrGreaterThan,
|
|
ErrGreaterGreaterThan,
|
|
OutErrGreaterThan,
|
|
OutErrGreaterGreaterThan,
|
|
Eol,
|
|
}
|
|
|
|
#[derive(Debug, PartialEq, Eq)]
|
|
pub struct Token {
|
|
pub contents: TokenContents,
|
|
pub span: Span,
|
|
}
|
|
|
|
impl Token {
|
|
pub fn new(contents: TokenContents, span: Span) -> Token {
|
|
Token { contents, span }
|
|
}
|
|
}
|
|
|
|
#[derive(Clone, Copy, Debug)]
|
|
pub enum BlockKind {
|
|
Paren,
|
|
CurlyBracket,
|
|
SquareBracket,
|
|
AngleBracket,
|
|
}
|
|
|
|
impl BlockKind {
|
|
fn closing(self) -> u8 {
|
|
match self {
|
|
BlockKind::Paren => b')',
|
|
BlockKind::SquareBracket => b']',
|
|
BlockKind::CurlyBracket => b'}',
|
|
BlockKind::AngleBracket => b'>',
|
|
}
|
|
}
|
|
}
|
|
|
|
// A baseline token is terminated if it's not nested inside of a paired
|
|
// delimiter and the next character is one of: `|`, `;`, `#` or any
|
|
// whitespace.
|
|
fn is_item_terminator(
|
|
block_level: &[BlockKind],
|
|
c: u8,
|
|
additional_whitespace: &[u8],
|
|
special_tokens: &[u8],
|
|
) -> bool {
|
|
block_level.is_empty()
|
|
&& (c == b' '
|
|
|| c == b'\t'
|
|
|| c == b'\n'
|
|
|| c == b'\r'
|
|
|| c == b'|'
|
|
|| c == b';'
|
|
|| additional_whitespace.contains(&c)
|
|
|| special_tokens.contains(&c))
|
|
}
|
|
|
|
/// Assignment operators have special handling distinct from math expressions, as they cause the
|
|
/// rest of the pipeline to be consumed.
|
|
pub fn is_assignment_operator(bytes: &[u8]) -> bool {
|
|
matches!(bytes, b"=" | b"+=" | b"++=" | b"-=" | b"*=" | b"/=")
|
|
}
|
|
|
|
// A special token is one that is a byte that stands alone as its own token. For example
|
|
// when parsing a signature you may want to have `:` be able to separate tokens and also
|
|
// to be handled as its own token to notify you you're about to parse a type in the example
|
|
// `foo:bar`
|
|
fn is_special_item(block_level: &[BlockKind], c: u8, special_tokens: &[u8]) -> bool {
|
|
block_level.is_empty() && special_tokens.contains(&c)
|
|
}
|
|
|
|
pub fn lex_item(
|
|
input: &[u8],
|
|
curr_offset: &mut usize,
|
|
span_offset: usize,
|
|
additional_whitespace: &[u8],
|
|
special_tokens: &[u8],
|
|
in_signature: bool,
|
|
) -> (Token, Option<ParseError>) {
|
|
// This variable tracks the starting character of a string literal, so that
|
|
// we remain inside the string literal lexer mode until we encounter the
|
|
// closing quote.
|
|
let mut quote_start: Option<u8> = None;
|
|
|
|
let mut in_comment = false;
|
|
|
|
let token_start = *curr_offset;
|
|
|
|
// This Vec tracks paired delimiters
|
|
let mut block_level: Vec<BlockKind> = vec![];
|
|
|
|
// The process of slurping up a baseline token repeats:
|
|
//
|
|
// - String literal, which begins with `'` or `"`, and continues until
|
|
// the same character is encountered again.
|
|
// - Delimiter pair, which begins with `[`, `(`, or `{`, and continues until
|
|
// the matching closing delimiter is found, skipping comments and string
|
|
// literals.
|
|
// - When not nested inside of a delimiter pair, when a terminating
|
|
// character (whitespace, `|`, `;` or `#`) is encountered, the baseline
|
|
// token is done.
|
|
// - Otherwise, accumulate the character into the current baseline token.
|
|
while let Some(c) = input.get(*curr_offset) {
|
|
let c = *c;
|
|
|
|
if let Some(start) = quote_start {
|
|
// Check if we're in an escape sequence
|
|
if c == b'\\' && start == b'"' {
|
|
// Go ahead and consume the escape character if possible
|
|
if input.get(*curr_offset + 1).is_some() {
|
|
// Successfully escaped the character
|
|
*curr_offset += 2;
|
|
continue;
|
|
} else {
|
|
let span = Span::new(span_offset + token_start, span_offset + *curr_offset);
|
|
|
|
return (
|
|
Token {
|
|
contents: TokenContents::Item,
|
|
span,
|
|
},
|
|
Some(ParseError::UnexpectedEof(
|
|
(start as char).to_string(),
|
|
Span::new(span.end - 1, span.end),
|
|
)),
|
|
);
|
|
}
|
|
}
|
|
// If we encountered the closing quote character for the current
|
|
// string, we're done with the current string.
|
|
if c == start {
|
|
// Also need to check to make sure we aren't escaped
|
|
quote_start = None;
|
|
}
|
|
} else if c == b'#' {
|
|
if is_item_terminator(&block_level, c, additional_whitespace, special_tokens) {
|
|
break;
|
|
}
|
|
in_comment = true;
|
|
} else if c == b'\n' || c == b'\r' {
|
|
in_comment = false;
|
|
if is_item_terminator(&block_level, c, additional_whitespace, special_tokens) {
|
|
break;
|
|
}
|
|
} else if in_comment {
|
|
if is_item_terminator(&block_level, c, additional_whitespace, special_tokens) {
|
|
break;
|
|
}
|
|
} else if is_special_item(&block_level, c, special_tokens) && token_start == *curr_offset {
|
|
*curr_offset += 1;
|
|
break;
|
|
} else if c == b'\'' || c == b'"' || c == b'`' {
|
|
// We encountered the opening quote of a string literal.
|
|
quote_start = Some(c);
|
|
} else if c == b'[' {
|
|
// We encountered an opening `[` delimiter.
|
|
block_level.push(BlockKind::SquareBracket);
|
|
} else if c == b'<' && in_signature {
|
|
block_level.push(BlockKind::AngleBracket);
|
|
} else if c == b'>' && in_signature {
|
|
if let Some(BlockKind::AngleBracket) = block_level.last() {
|
|
let _ = block_level.pop();
|
|
}
|
|
} else if c == b']' {
|
|
// We encountered a closing `]` delimiter. Pop off the opening `[`
|
|
// delimiter.
|
|
if let Some(BlockKind::SquareBracket) = block_level.last() {
|
|
let _ = block_level.pop();
|
|
}
|
|
} else if c == b'{' {
|
|
// We encountered an opening `{` delimiter.
|
|
block_level.push(BlockKind::CurlyBracket);
|
|
} else if c == b'}' {
|
|
// We encountered a closing `}` delimiter. Pop off the opening `{`.
|
|
if let Some(BlockKind::CurlyBracket) = block_level.last() {
|
|
let _ = block_level.pop();
|
|
} else {
|
|
// We encountered a closing `}` delimiter, but the last opening
|
|
// delimiter was not a `{`. This is an error.
|
|
let span = Span::new(span_offset + token_start, span_offset + *curr_offset);
|
|
|
|
*curr_offset += 1;
|
|
return (
|
|
Token {
|
|
contents: TokenContents::Item,
|
|
span,
|
|
},
|
|
Some(ParseError::Unbalanced(
|
|
"{".to_string(),
|
|
"}".to_string(),
|
|
Span::new(span.end, span.end + 1),
|
|
)),
|
|
);
|
|
}
|
|
} else if c == b'(' {
|
|
// We encountered an opening `(` delimiter.
|
|
block_level.push(BlockKind::Paren);
|
|
} else if c == b')' {
|
|
// We encountered a closing `)` delimiter. Pop off the opening `(`.
|
|
if let Some(BlockKind::Paren) = block_level.last() {
|
|
let _ = block_level.pop();
|
|
} else {
|
|
// We encountered a closing `)` delimiter, but the last opening
|
|
// delimiter was not a `(`. This is an error.
|
|
let span = Span::new(span_offset + token_start, span_offset + *curr_offset);
|
|
|
|
*curr_offset += 1;
|
|
return (
|
|
Token {
|
|
contents: TokenContents::Item,
|
|
span,
|
|
},
|
|
Some(ParseError::Unbalanced(
|
|
"(".to_string(),
|
|
")".to_string(),
|
|
Span::new(span.end, span.end + 1),
|
|
)),
|
|
);
|
|
}
|
|
} else if c == b'r' && input.get(*curr_offset + 1) == Some(b'#').as_ref() {
|
|
// already checked `r#` pattern, so it's a raw string.
|
|
let lex_result = lex_raw_string(input, curr_offset, span_offset);
|
|
let span = Span::new(span_offset + token_start, span_offset + *curr_offset);
|
|
if let Err(e) = lex_result {
|
|
return (
|
|
Token {
|
|
contents: TokenContents::Item,
|
|
span,
|
|
},
|
|
Some(e),
|
|
);
|
|
}
|
|
} else if c == b'|' && is_redirection(&input[token_start..*curr_offset]) {
|
|
// matches err>| etc.
|
|
*curr_offset += 1;
|
|
break;
|
|
} else if is_item_terminator(&block_level, c, additional_whitespace, special_tokens) {
|
|
break;
|
|
}
|
|
|
|
*curr_offset += 1;
|
|
}
|
|
|
|
let span = Span::new(span_offset + token_start, span_offset + *curr_offset);
|
|
|
|
if let Some(delim) = quote_start {
|
|
// The non-lite parse trims quotes on both sides, so we add the expected quote so that
|
|
// anyone wanting to consume this partial parse (e.g., completions) will be able to get
|
|
// correct information from the non-lite parse.
|
|
return (
|
|
Token {
|
|
contents: TokenContents::Item,
|
|
span,
|
|
},
|
|
Some(ParseError::UnexpectedEof(
|
|
(delim as char).to_string(),
|
|
Span::new(span.end - 1, span.end),
|
|
)),
|
|
);
|
|
}
|
|
|
|
// If there is still unclosed opening delimiters, remember they were missing
|
|
if let Some(block) = block_level.last() {
|
|
let delim = block.closing();
|
|
let cause = ParseError::UnexpectedEof(
|
|
(delim as char).to_string(),
|
|
Span::new(span.end - 1, span.end),
|
|
);
|
|
|
|
return (
|
|
Token {
|
|
contents: TokenContents::Item,
|
|
span,
|
|
},
|
|
Some(cause),
|
|
);
|
|
}
|
|
|
|
// If we didn't accumulate any characters, it's an unexpected error.
|
|
if *curr_offset - token_start == 0 {
|
|
return (
|
|
Token {
|
|
contents: TokenContents::Item,
|
|
span,
|
|
},
|
|
Some(ParseError::UnexpectedEof("command".to_string(), span)),
|
|
);
|
|
}
|
|
|
|
let mut err = None;
|
|
let output = match &input[(span.start - span_offset)..(span.end - span_offset)] {
|
|
bytes if is_assignment_operator(bytes) => Token {
|
|
contents: TokenContents::AssignmentOperator,
|
|
span,
|
|
},
|
|
b"out>" | b"o>" => Token {
|
|
contents: TokenContents::OutGreaterThan,
|
|
span,
|
|
},
|
|
b"out>>" | b"o>>" => Token {
|
|
contents: TokenContents::OutGreaterGreaterThan,
|
|
span,
|
|
},
|
|
b"out>|" | b"o>|" => {
|
|
err = Some(ParseError::Expected(
|
|
"`|`. Redirecting stdout to a pipe is the same as normal piping.",
|
|
span,
|
|
));
|
|
Token {
|
|
contents: TokenContents::Item,
|
|
span,
|
|
}
|
|
}
|
|
b"err>" | b"e>" => Token {
|
|
contents: TokenContents::ErrGreaterThan,
|
|
span,
|
|
},
|
|
b"err>>" | b"e>>" => Token {
|
|
contents: TokenContents::ErrGreaterGreaterThan,
|
|
span,
|
|
},
|
|
b"err>|" | b"e>|" => Token {
|
|
contents: TokenContents::ErrGreaterPipe,
|
|
span,
|
|
},
|
|
b"out+err>" | b"err+out>" | b"o+e>" | b"e+o>" => Token {
|
|
contents: TokenContents::OutErrGreaterThan,
|
|
span,
|
|
},
|
|
b"out+err>>" | b"err+out>>" | b"o+e>>" | b"e+o>>" => Token {
|
|
contents: TokenContents::OutErrGreaterGreaterThan,
|
|
span,
|
|
},
|
|
b"out+err>|" | b"err+out>|" | b"o+e>|" | b"e+o>|" => Token {
|
|
contents: TokenContents::OutErrGreaterPipe,
|
|
span,
|
|
},
|
|
b"&&" => {
|
|
err = Some(ParseError::ShellAndAnd(span));
|
|
Token {
|
|
contents: TokenContents::Item,
|
|
span,
|
|
}
|
|
}
|
|
b"2>" => {
|
|
err = Some(ParseError::ShellErrRedirect(span));
|
|
Token {
|
|
contents: TokenContents::Item,
|
|
span,
|
|
}
|
|
}
|
|
b"2>&1" => {
|
|
err = Some(ParseError::ShellOutErrRedirect(span));
|
|
Token {
|
|
contents: TokenContents::Item,
|
|
span,
|
|
}
|
|
}
|
|
_ => Token {
|
|
contents: TokenContents::Item,
|
|
span,
|
|
},
|
|
};
|
|
(output, err)
|
|
}
|
|
|
|
fn lex_raw_string(
|
|
input: &[u8],
|
|
curr_offset: &mut usize,
|
|
span_offset: usize,
|
|
) -> Result<(), ParseError> {
|
|
// A raw string literal looks like `echo r#'Look, I can use 'single quotes'!'#`
|
|
// If the next character is `#` we're probably looking at a raw string literal
|
|
// so we need to read all the text until we find a closing `#`. This raw string
|
|
// can contain any character, including newlines and double quotes without needing
|
|
// to escape them.
|
|
//
|
|
// A raw string can contain many `#` as prefix,
|
|
// incase if there is a `'#` or `#'` in the string itself.
|
|
// E.g: r##'I can use '#' in a raw string'##
|
|
let mut prefix_sharp_cnt = 0;
|
|
let start = *curr_offset;
|
|
while let Some(b'#') = input.get(start + prefix_sharp_cnt + 1) {
|
|
prefix_sharp_cnt += 1;
|
|
}
|
|
|
|
// curr_offset is the character `r`, we need to move forward and skip all `#`
|
|
// characters.
|
|
//
|
|
// e.g: r###'<body>
|
|
// ^
|
|
// ^
|
|
// curr_offset
|
|
*curr_offset += prefix_sharp_cnt + 1;
|
|
// the next one should be a single quote.
|
|
if input.get(*curr_offset) != Some(&b'\'') {
|
|
return Err(ParseError::Expected(
|
|
"'",
|
|
Span::new(span_offset + *curr_offset, span_offset + *curr_offset + 1),
|
|
));
|
|
}
|
|
|
|
*curr_offset += 1;
|
|
let mut matches = false;
|
|
while let Some(ch) = input.get(*curr_offset) {
|
|
// check for postfix '###
|
|
if *ch == b'#' {
|
|
let start_ch = input[*curr_offset - prefix_sharp_cnt];
|
|
let postfix = &input[*curr_offset - prefix_sharp_cnt + 1..=*curr_offset];
|
|
if start_ch == b'\'' && postfix.iter().all(|x| *x == b'#') {
|
|
matches = true;
|
|
break;
|
|
}
|
|
}
|
|
*curr_offset += 1
|
|
}
|
|
if !matches {
|
|
let mut expected = '\''.to_string();
|
|
expected.push_str(&"#".repeat(prefix_sharp_cnt));
|
|
return Err(ParseError::UnexpectedEof(
|
|
expected,
|
|
Span::new(span_offset + *curr_offset - 1, span_offset + *curr_offset),
|
|
));
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
pub fn lex_signature(
|
|
input: &[u8],
|
|
span_offset: usize,
|
|
additional_whitespace: &[u8],
|
|
special_tokens: &[u8],
|
|
skip_comment: bool,
|
|
) -> (Vec<Token>, Option<ParseError>) {
|
|
let mut state = LexState {
|
|
input,
|
|
output: Vec::new(),
|
|
error: None,
|
|
span_offset,
|
|
};
|
|
lex_internal(
|
|
&mut state,
|
|
additional_whitespace,
|
|
special_tokens,
|
|
skip_comment,
|
|
true,
|
|
None,
|
|
);
|
|
(state.output, state.error)
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
pub struct LexState<'a> {
|
|
pub input: &'a [u8],
|
|
pub output: Vec<Token>,
|
|
pub error: Option<ParseError>,
|
|
pub span_offset: usize,
|
|
}
|
|
|
|
/// Lex until the output is `max_tokens` longer than before the call, or until the input is exhausted.
|
|
/// The return value indicates how many tokens the call added to / removed from the output.
|
|
///
|
|
/// The behaviour here is non-obvious when `additional_whitespace` doesn't include newline:
|
|
/// If you pass a `state` where the last token in the output is an Eol, this might *remove* tokens.
|
|
pub fn lex_n_tokens(
|
|
state: &mut LexState,
|
|
additional_whitespace: &[u8],
|
|
special_tokens: &[u8],
|
|
skip_comment: bool,
|
|
max_tokens: usize,
|
|
) -> isize {
|
|
let n_tokens = state.output.len();
|
|
lex_internal(
|
|
state,
|
|
additional_whitespace,
|
|
special_tokens,
|
|
skip_comment,
|
|
false,
|
|
Some(max_tokens),
|
|
);
|
|
// If this lex_internal call reached the end of the input, there may now be fewer tokens
|
|
// in the output than before.
|
|
let tokens_n_diff = (state.output.len() as isize) - (n_tokens as isize);
|
|
let next_offset = state.output.last().map(|token| token.span.end);
|
|
if let Some(next_offset) = next_offset {
|
|
state.input = &state.input[next_offset - state.span_offset..];
|
|
state.span_offset = next_offset;
|
|
}
|
|
tokens_n_diff
|
|
}
|
|
|
|
pub fn lex(
|
|
input: &[u8],
|
|
span_offset: usize,
|
|
additional_whitespace: &[u8],
|
|
special_tokens: &[u8],
|
|
skip_comment: bool,
|
|
) -> (Vec<Token>, Option<ParseError>) {
|
|
let mut state = LexState {
|
|
input,
|
|
output: Vec::new(),
|
|
error: None,
|
|
span_offset,
|
|
};
|
|
lex_internal(
|
|
&mut state,
|
|
additional_whitespace,
|
|
special_tokens,
|
|
skip_comment,
|
|
false,
|
|
None,
|
|
);
|
|
(state.output, state.error)
|
|
}
|
|
|
|
fn lex_internal(
|
|
state: &mut LexState,
|
|
additional_whitespace: &[u8],
|
|
special_tokens: &[u8],
|
|
skip_comment: bool,
|
|
// within signatures we want to treat `<` and `>` specially
|
|
in_signature: bool,
|
|
max_tokens: Option<usize>,
|
|
) {
|
|
let initial_output_len = state.output.len();
|
|
|
|
let mut curr_offset = 0;
|
|
|
|
let mut is_complete = true;
|
|
while let Some(c) = state.input.get(curr_offset) {
|
|
if max_tokens
|
|
.is_some_and(|max_tokens| state.output.len() >= initial_output_len + max_tokens)
|
|
{
|
|
break;
|
|
}
|
|
let c = *c;
|
|
if c == b'|' {
|
|
// If the next character is `|`, it's either `|` or `||`.
|
|
let idx = curr_offset;
|
|
let prev_idx = idx;
|
|
curr_offset += 1;
|
|
|
|
// If the next character is `|`, we're looking at a `||`.
|
|
if let Some(c) = state.input.get(curr_offset) {
|
|
if *c == b'|' {
|
|
let idx = curr_offset;
|
|
curr_offset += 1;
|
|
state.output.push(Token::new(
|
|
TokenContents::PipePipe,
|
|
Span::new(state.span_offset + prev_idx, state.span_offset + idx + 1),
|
|
));
|
|
continue;
|
|
}
|
|
}
|
|
|
|
// Otherwise, it's just a regular `|` token.
|
|
|
|
// Before we push, check to see if the previous character was a newline.
|
|
// If so, then this is a continuation of the previous line
|
|
if let Some(prev) = state.output.last_mut() {
|
|
match prev.contents {
|
|
TokenContents::Eol => {
|
|
*prev = Token::new(
|
|
TokenContents::Pipe,
|
|
Span::new(state.span_offset + idx, state.span_offset + idx + 1),
|
|
);
|
|
// And this is a continuation of the previous line if previous line is a
|
|
// comment line (combined with EOL + Comment)
|
|
//
|
|
// Initially, the last one token is TokenContents::Pipe, we don't need to
|
|
// check it, so the beginning offset is 2.
|
|
let mut offset = 2;
|
|
while state.output.len() > offset {
|
|
let index = state.output.len() - offset;
|
|
if state.output[index].contents == TokenContents::Comment
|
|
&& state.output[index - 1].contents == TokenContents::Eol
|
|
{
|
|
state.output.remove(index - 1);
|
|
offset += 1;
|
|
} else {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
_ => {
|
|
state.output.push(Token::new(
|
|
TokenContents::Pipe,
|
|
Span::new(state.span_offset + idx, state.span_offset + idx + 1),
|
|
));
|
|
}
|
|
}
|
|
} else {
|
|
state.output.push(Token::new(
|
|
TokenContents::Pipe,
|
|
Span::new(state.span_offset + idx, state.span_offset + idx + 1),
|
|
));
|
|
}
|
|
|
|
is_complete = false;
|
|
} else if c == b';' {
|
|
// If the next character is a `;`, we're looking at a semicolon token.
|
|
|
|
if !is_complete && state.error.is_none() {
|
|
state.error = Some(ParseError::ExtraTokens(Span::new(
|
|
curr_offset,
|
|
curr_offset + 1,
|
|
)));
|
|
}
|
|
let idx = curr_offset;
|
|
curr_offset += 1;
|
|
state.output.push(Token::new(
|
|
TokenContents::Semicolon,
|
|
Span::new(state.span_offset + idx, state.span_offset + idx + 1),
|
|
));
|
|
} else if c == b'\r' {
|
|
// Ignore a stand-alone carriage return
|
|
curr_offset += 1;
|
|
} else if c == b'\n' {
|
|
// If the next character is a newline, we're looking at an EOL (end of line) token.
|
|
let idx = curr_offset;
|
|
curr_offset += 1;
|
|
if !additional_whitespace.contains(&c) {
|
|
state.output.push(Token::new(
|
|
TokenContents::Eol,
|
|
Span::new(state.span_offset + idx, state.span_offset + idx + 1),
|
|
));
|
|
}
|
|
} else if c == b'#' {
|
|
// If the next character is `#`, we're at the beginning of a line
|
|
// comment. The comment continues until the next newline.
|
|
let mut start = curr_offset;
|
|
|
|
while let Some(input) = state.input.get(curr_offset) {
|
|
if *input == b'\n' {
|
|
if !skip_comment {
|
|
state.output.push(Token::new(
|
|
TokenContents::Comment,
|
|
Span::new(state.span_offset + start, state.span_offset + curr_offset),
|
|
));
|
|
}
|
|
start = curr_offset;
|
|
|
|
break;
|
|
} else {
|
|
curr_offset += 1;
|
|
}
|
|
}
|
|
if start != curr_offset && !skip_comment {
|
|
state.output.push(Token::new(
|
|
TokenContents::Comment,
|
|
Span::new(state.span_offset + start, state.span_offset + curr_offset),
|
|
));
|
|
}
|
|
} else if c == b' ' || c == b'\t' || additional_whitespace.contains(&c) {
|
|
// If the next character is non-newline whitespace, skip it.
|
|
curr_offset += 1;
|
|
} else {
|
|
let (token, err) = lex_item(
|
|
state.input,
|
|
&mut curr_offset,
|
|
state.span_offset,
|
|
additional_whitespace,
|
|
special_tokens,
|
|
in_signature,
|
|
);
|
|
if state.error.is_none() {
|
|
state.error = err;
|
|
}
|
|
is_complete = true;
|
|
state.output.push(token);
|
|
}
|
|
}
|
|
}
|
|
|
|
/// True if this the start of a redirection. Does not match `>>` or `>|` forms.
|
|
fn is_redirection(token: &[u8]) -> bool {
|
|
matches!(
|
|
token,
|
|
b"o>" | b"out>" | b"e>" | b"err>" | b"o+e>" | b"e+o>" | b"out+err>" | b"err+out>"
|
|
)
|
|
}
|