forked from extern/nushell
* Making Commands match what UntaggedValue needs * WIP * WIP * WIP * Moved to expressions for conditions * Add 'each' command to use command blocks * More cleanup * Add test for 'each' * Instead use an expression block
28 lines
1005 B
Rust
28 lines
1005 B
Rust
#[macro_use]
|
|
mod macros;
|
|
|
|
mod call_info;
|
|
pub mod hir;
|
|
mod maybe_owned;
|
|
mod return_value;
|
|
mod signature;
|
|
mod syntax_shape;
|
|
mod type_name;
|
|
mod type_shape;
|
|
mod value;
|
|
|
|
pub use crate::call_info::{CallInfo, EvaluatedArgs};
|
|
pub use crate::maybe_owned::MaybeOwned;
|
|
pub use crate::return_value::{CommandAction, ReturnSuccess, ReturnValue};
|
|
pub use crate::signature::{NamedType, PositionalType, Signature};
|
|
pub use crate::syntax_shape::SyntaxShape;
|
|
pub use crate::type_name::{PrettyType, ShellTypeName, SpannedTypeName};
|
|
pub use crate::type_shape::{Row as RowType, Type};
|
|
pub use crate::value::column_path::{did_you_mean, ColumnPath, PathMember, UnspannedPathMember};
|
|
pub use crate::value::dict::{Dictionary, TaggedDictBuilder};
|
|
pub use crate::value::evaluate::Scope;
|
|
pub use crate::value::primitive::Primitive;
|
|
pub use crate::value::primitive::{format_date, format_duration, format_primitive};
|
|
pub use crate::value::range::{Range, RangeInclusion};
|
|
pub use crate::value::{merge_descriptors, UntaggedValue, Value};
|