mirror of
https://github.com/nushell/nushell.git
synced 2025-05-12 18:54:34 +00:00
# Description Fix patterns in pattern matching to properly declare their variables when discovering which variables need to be closed over when creating a closure. Also, moves `collect` to core, so that the core language can use `$in`. Fixes #8595 # User-Facing Changes See above # Tests + Formatting Don't forget to add tests that cover your changes. Make sure you've run and fixed any issues with these commands: - `cargo fmt --all -- --check` to check standard code formatting (`cargo fmt --all` applies these changes) - `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used -A clippy::needless_collect` to check that you're using the standard code style - `cargo test --workspace` to check that all tests pass > **Note** > from `nushell` you can also use the `toolkit` as follows > ```bash > use toolkit.nu # or use an `env_change` hook to activate it automatically > toolkit check pr > ``` # After Submitting If your PR had any user-facing changes, update [the documentation](https://github.com/nushell/nushell.github.io) after the PR is merged, if necessary. This will help us keep the docs up to date.
89 lines
1.7 KiB
Rust
89 lines
1.7 KiB
Rust
mod alias;
|
|
mod break_;
|
|
mod collect;
|
|
mod commandline;
|
|
mod const_;
|
|
mod continue_;
|
|
mod def;
|
|
mod def_env;
|
|
mod describe;
|
|
mod do_;
|
|
mod echo;
|
|
mod error_make;
|
|
mod export;
|
|
mod export_alias;
|
|
mod export_def;
|
|
mod export_def_env;
|
|
mod export_extern;
|
|
mod export_use;
|
|
mod extern_;
|
|
mod for_;
|
|
pub mod help;
|
|
pub mod help_aliases;
|
|
pub mod help_commands;
|
|
pub mod help_externs;
|
|
pub mod help_modules;
|
|
mod help_operators;
|
|
mod hide;
|
|
mod hide_env;
|
|
mod if_;
|
|
mod ignore;
|
|
mod let_;
|
|
mod loop_;
|
|
mod match_;
|
|
mod module;
|
|
mod mut_;
|
|
pub(crate) mod overlay;
|
|
mod return_;
|
|
mod try_;
|
|
mod use_;
|
|
mod version;
|
|
mod while_;
|
|
|
|
pub use alias::Alias;
|
|
pub use break_::Break;
|
|
pub use collect::Collect;
|
|
pub use commandline::Commandline;
|
|
pub use const_::Const;
|
|
pub use continue_::Continue;
|
|
pub use def::Def;
|
|
pub use def_env::DefEnv;
|
|
pub use describe::Describe;
|
|
pub use do_::Do;
|
|
pub use echo::Echo;
|
|
pub use error_make::ErrorMake;
|
|
pub use export::ExportCommand;
|
|
pub use export_alias::ExportAlias;
|
|
pub use export_def::ExportDef;
|
|
pub use export_def_env::ExportDefEnv;
|
|
pub use export_extern::ExportExtern;
|
|
pub use export_use::ExportUse;
|
|
pub use extern_::Extern;
|
|
pub use for_::For;
|
|
pub use help::Help;
|
|
pub use help_aliases::HelpAliases;
|
|
pub use help_commands::HelpCommands;
|
|
pub use help_externs::HelpExterns;
|
|
pub use help_modules::HelpModules;
|
|
pub use help_operators::HelpOperators;
|
|
pub use hide::Hide;
|
|
pub use hide_env::HideEnv;
|
|
pub use if_::If;
|
|
pub use ignore::Ignore;
|
|
pub use let_::Let;
|
|
pub use loop_::Loop;
|
|
pub use match_::Match;
|
|
pub use module::Module;
|
|
pub use mut_::Mut;
|
|
pub use overlay::*;
|
|
pub use return_::Return;
|
|
pub use try_::Try;
|
|
pub use use_::Use;
|
|
pub use version::Version;
|
|
pub use while_::While;
|
|
//#[cfg(feature = "plugin")]
|
|
mod register;
|
|
|
|
//#[cfg(feature = "plugin")]
|
|
pub use register::Register;
|