nu-protocol 0.109.1

Nushell's internal protocols, including its abstract syntax tree
Documentation
mod chained_error;
mod compile_error;
mod config;
mod labeled_error;
mod parse_error;
mod parse_warning;
pub mod report_error;
pub mod shell_error;
pub mod shell_warning;

pub use compile_error::CompileError;
pub use config::{ConfigError, ConfigWarning};
pub use labeled_error::{ErrorLabel, LabeledError};
pub use parse_error::{DidYouMean, ParseError};
pub use parse_warning::ParseWarning;
pub use report_error::{
    ReportMode, Reportable, format_cli_error, report_parse_error, report_parse_warning,
    report_shell_error, report_shell_warning,
};
pub use shell_error::ShellError;
pub use shell_warning::ShellWarning;