Files
nushell/crates/nu-protocol/src/ast/mod.rs
Stefan Holderbach 076a29ae19 Document public types in nu-protocol (#12906)
- **Doc-comment public `nu-protocol` modules**
- **Doccomment argument/signature/call stuff**
- **Doccomment cell path types**
- **Doccomment expression stuff**
- **Doccomment import patterns**
- **Doccomment pattern matching AST nodes**
2024-07-11 13:30:12 +02:00

31 lines
563 B
Rust

//! Types representing parsed Nushell code (the Abstract Syntax Tree)
mod block;
mod call;
mod cell_path;
mod expr;
mod expression;
mod import_pattern;
mod keyword;
mod match_pattern;
mod operator;
mod pipeline;
mod range;
mod table;
mod unit;
mod value_with_unit;
pub use block::*;
pub use call::*;
pub use cell_path::*;
pub use expr::*;
pub use expression::*;
pub use import_pattern::*;
pub use keyword::*;
pub use match_pattern::*;
pub use operator::*;
pub use pipeline::*;
pub use range::*;
pub use table::Table;
pub use unit::*;
pub use value_with_unit::*;