1#![doc = include_str!("../README.md")]
2mod deparse;
3mod exportable;
4mod flatten;
5mod known_external;
6mod lex;
7mod lite_parser;
8mod parse_keywords;
9mod parse_patterns;
10mod parse_shape_specs;
11mod parser;
12mod type_check;
13
14pub use deparse::escape_for_script_arg;
15pub use flatten::{
16    FlatShape, flatten_block, flatten_expression, flatten_pipeline, flatten_pipeline_element,
17};
18pub use known_external::KnownExternal;
19pub use lex::{LexState, Token, TokenContents, lex, lex_n_tokens, lex_signature};
20pub use lite_parser::{LiteBlock, LiteCommand, lite_parse};
21pub use nu_protocol::parser_path::*;
22pub use parse_keywords::*;
23
24pub use parser::{
25    DURATION_UNIT_GROUPS, is_math_expression_like, parse, parse_block, parse_expression,
26    parse_external_call, parse_unit_value, trim_quotes, trim_quotes_str, unescape_unquote_string,
27};