tokenize_str_with_options

Function tokenize_str_with_options 

Source
pub fn tokenize_str_with_options(
    input: &str,
    options: &TokenizerOptions,
) -> Result<Vec<Token>, TokenizerError>
Expand description

Break the given input shell script string into tokens, returning the tokens.

ยงArguments

  • input - The shell script to tokenize.
  • options - Options controlling how the tokenizer operates.