pub struct ErrorsAcc<'a> {
pub errors: HashMap<FileID, Vec<ErrorInfo>>,
pub files: &'a HashMap<FileID, Arc<AstDocument>>,
pub configs: &'a HashMap<FileID, Arc<ConfigDocument>>,
}
Expand description
Used to gather errors in compiler stages
Fields§
§errors: HashMap<FileID, Vec<ErrorInfo>>
§files: &'a HashMap<FileID, Arc<AstDocument>>
§configs: &'a HashMap<FileID, Arc<ConfigDocument>>
Implementations§
source§impl<'a> ErrorsAcc<'a>
impl<'a> ErrorsAcc<'a>
pub fn new(root: &'a RootGraph) -> Self
pub fn has_error(&self, file: FileID) -> bool
pub fn sym<S: Into<String>>( &mut self, sym: Symbol, file: FileID, weight: u32, s: S, )
pub fn sym_with_type<S: Into<String>>( &mut self, sym: Symbol, file: FileID, weight: u32, s: S, error_type: ErrorType, )
pub fn sym_info<S: Into<String>>( &mut self, sym: Symbol, file: FileID, weight: u32, s: S, )
pub fn span<S: Into<String>>( &mut self, span: Range<usize>, file: FileID, weight: u32, s: S, )
pub fn span_type<S: Into<String>>( &mut self, span: Range<usize>, file: FileID, weight: u32, s: S, error_type: ErrorType, )
pub fn span_info<S: Into<String>>( &mut self, span: Range<usize>, file: FileID, weight: u32, s: S, )
Auto Trait Implementations§
impl<'a> Freeze for ErrorsAcc<'a>
impl<'a> RefUnwindSafe for ErrorsAcc<'a>
impl<'a> Send for ErrorsAcc<'a>
impl<'a> Sync for ErrorsAcc<'a>
impl<'a> Unpin for ErrorsAcc<'a>
impl<'a> UnwindSafe for ErrorsAcc<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more