related to - https://github.com/nushell/nushell/pull/10478 # Description this PR is the followup removal to https://github.com/nushell/nushell/pull/10478. # User-Facing Changes `$nothing` is now an undefined variable, unless define by the user. ```nushell > $nothing Error: nu::parser::variable_not_found × Variable not found. ╭─[entry #1:1:1] 1 │ $nothing · ────┬─── · ╰── variable not found. ╰──── ``` # Tests + Formatting # After Submitting mention that in release notes
48 lines
961 B
Rust
48 lines
961 B
Rust
mod alias;
|
|
pub mod ast;
|
|
pub mod cli_error;
|
|
pub mod config;
|
|
mod did_you_mean;
|
|
pub mod engine;
|
|
pub mod eval_const;
|
|
mod example;
|
|
mod exportable;
|
|
mod id;
|
|
mod lev_distance;
|
|
mod module;
|
|
mod parse_error;
|
|
mod pipeline_data;
|
|
#[cfg(feature = "plugin")]
|
|
mod plugin_signature;
|
|
mod shell_error;
|
|
mod signature;
|
|
pub mod span;
|
|
mod syntax_shape;
|
|
mod ty;
|
|
pub mod util;
|
|
mod value;
|
|
mod variable;
|
|
|
|
pub use alias::*;
|
|
pub use cli_error::*;
|
|
pub use config::*;
|
|
pub use did_you_mean::did_you_mean;
|
|
pub use engine::{ENV_VARIABLE_ID, IN_VARIABLE_ID, NU_VARIABLE_ID};
|
|
pub use example::*;
|
|
pub use exportable::*;
|
|
pub use id::*;
|
|
pub use lev_distance::levenshtein_distance;
|
|
pub use module::*;
|
|
pub use parse_error::{DidYouMean, ParseError};
|
|
pub use pipeline_data::*;
|
|
#[cfg(feature = "plugin")]
|
|
pub use plugin_signature::*;
|
|
pub use shell_error::*;
|
|
pub use signature::*;
|
|
pub use span::*;
|
|
pub use syntax_shape::*;
|
|
pub use ty::*;
|
|
pub use util::BufferedReader;
|
|
pub use value::*;
|
|
pub use variable::*;
|