mirror of
https://github.com/nushell/nushell
synced 2025-01-05 01:39:02 +00:00
8ee619954d
* cmdline args wip * WIP * redirect working * Add help and examples * Only show flags in signature of more than help
19 lines
461 B
Rust
19 lines
461 B
Rust
mod errors;
|
|
mod flatten;
|
|
mod lex;
|
|
mod lite_parse;
|
|
mod parse_keywords;
|
|
mod parser;
|
|
mod type_check;
|
|
|
|
pub use errors::ParseError;
|
|
pub use flatten::{
|
|
flatten_block, flatten_expression, flatten_pipeline, flatten_statement, FlatShape,
|
|
};
|
|
pub use lex::{lex, Token, TokenContents};
|
|
pub use lite_parse::{lite_parse, LiteBlock};
|
|
|
|
pub use parser::{find_captures_in_expr, parse, trim_quotes, Import};
|
|
|
|
#[cfg(feature = "plugin")]
|
|
pub use parse_keywords::parse_register;
|