mirror of
https://github.com/nushell/nushell.git
synced 2025-06-09 03:26:58 +02:00
We split off the evaluation engine part of nu-cli into its own crate. This helps improve build times for nu-cli by 17% in my tests. It also helps us see a bit better what's the core engine portion vs the part specific to the interactive CLI piece. There's more than can be done here, but I think it's a good start in the right direction.
9 lines
197 B
Rust
9 lines
197 B
Rust
pub(crate) mod block;
|
|
pub(crate) mod evaluate_args;
|
|
pub(crate) mod evaluator;
|
|
pub(crate) mod expr;
|
|
pub(crate) mod internal;
|
|
pub(crate) mod operator;
|
|
pub(crate) mod scope;
|
|
pub(crate) mod variables;
|