mirror of
https://github.com/nushell/nushell.git
synced 2025-06-13 05:26:59 +02:00
# Description Before this PR, `to msgpack`/`to msgpackz` and `to json` serialize closures as `nil`/`null` respectively, when the `--serialize` option isn't passed. This PR makes it an error to serialize closures to msgpack or JSON without the `--serialize` flag, which is the behavior of `to nuon`. This PR also adds the `--serialize` flag to `to msgpack`. This PR also changes `to nuon` and `to json` to return an error if they cannot find the block contents of a closure, rather than serializing an empty string or an error string, respectively. This behavior is replicated for `to msgpack`. It also changes `to nuon`'s error message for serializing closures without `--serialize` to be the same as the new errors for `to json` and `to msgpack`. # User-Facing Changes * Add `--serialize` flag to `to msgpack`, similar to the `--serialize` flag for `to nuon` and `to json`. * Serializing closures to JSON or msgpack without `--serialize` Partially fixes #11738
39 lines
757 B
Rust
39 lines
757 B
Rust
//! Representation of the engine state and many of the details that implement the scoping
|
|
mod argument;
|
|
mod cached_file;
|
|
mod call;
|
|
mod call_info;
|
|
mod closure;
|
|
mod command;
|
|
mod description;
|
|
mod engine_state;
|
|
mod error_handler;
|
|
mod jobs;
|
|
mod overlay;
|
|
mod pattern_match;
|
|
mod sequence;
|
|
mod stack;
|
|
mod stack_out_dest;
|
|
mod state_delta;
|
|
mod state_working_set;
|
|
mod variable;
|
|
|
|
pub use cached_file::CachedFile;
|
|
|
|
pub use argument::*;
|
|
pub use call::*;
|
|
pub use call_info::*;
|
|
pub use closure::*;
|
|
pub use command::*;
|
|
pub use engine_state::*;
|
|
pub use error_handler::*;
|
|
pub use jobs::*;
|
|
pub use overlay::*;
|
|
pub use pattern_match::*;
|
|
pub use sequence::*;
|
|
pub use stack::*;
|
|
pub use stack_out_dest::*;
|
|
pub use state_delta::*;
|
|
pub use state_working_set::*;
|
|
pub use variable::*;
|