mirror of
https://github.com/nushell/nushell.git
synced 2025-07-31 00:32:19 +02:00
* 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
8 lines
128 B
Rust
8 lines
128 B
Rust
use derive_new::new;
|
|
use nu_protocol::hir;
|
|
|
|
#[derive(new, Debug)]
|
|
pub(crate) struct Command {
|
|
pub(crate) args: hir::Call,
|
|
}
|