Dan Davison ce6d3c6eb2
Refactor creation of $nu.scope in eval.rs (#7104)
The function was ~400 lines long and hence very hard to work with.
2022-11-11 23:20:28 +01:00

18 lines
402 B
Rust

mod call_ext;
pub mod column;
pub mod documentation;
pub mod env;
mod eval;
mod glob_from;
mod scope;
pub use call_ext::CallExt;
pub use column::get_columns;
pub use documentation::get_full_help;
pub use env::*;
pub use eval::{
eval_block, eval_call, eval_expression, eval_expression_with_input, eval_operator,
eval_subexpression, eval_variable, redirect_env,
};
pub use glob_from::glob_from;