pub type SourceResult<T> = Result<T, EcoVec<SourceDiagnostic>>;Expand description
A result that can carry multiple source errors. The recommended way to
create an error for this type is with the bail! macro.
Aliased Type§
pub enum SourceResult<T> {
Ok(T),
Err(EcoVec<SourceDiagnostic>),
}