2020-08-01 18:39:55 +00:00
|
|
|
use std::fmt::Debug;
|
|
|
|
|
|
|
|
/// A combination of an informative parse error, and what has been successfully parsed so far
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct ParseError<T: Debug> {
|
|
|
|
/// An informative cause for this parse error
|
2020-08-21 19:37:51 +00:00
|
|
|
pub cause: nu_errors::ParseError,
|
2020-08-01 18:39:55 +00:00
|
|
|
|
|
|
|
/// What has been successfully parsed, if anything
|
2020-08-21 19:37:51 +00:00
|
|
|
pub partial: Option<T>,
|
2020-08-01 18:39:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub type ParseResult<T> = Result<T, ParseError<T>>;
|
|
|
|
|
|
|
|
impl<T: Debug> From<ParseError<T>> for nu_errors::ShellError {
|
|
|
|
fn from(e: ParseError<T>) -> Self {
|
|
|
|
e.cause.into()
|
|
|
|
}
|
|
|
|
}
|