pub enum CompilerError {
IoError(String),
ParseError(String),
SemanticError(String),
CodegenError(String),
Located {
severity: ErrorSeverity,
location: SourceLocation,
message: String,
code: Option<ErrorCode>,
},
Diagnostic(Box<DiagnosticData>),
}Variants§
IoError(String)
ParseError(String)
SemanticError(String)
CodegenError(String)
Located
Diagnostic(Box<DiagnosticData>)
Implementations§
Source§impl CompilerError
impl CompilerError
Sourcepub fn located(
severity: ErrorSeverity,
location: SourceLocation,
message: impl Into<String>,
code: Option<ErrorCode>,
) -> Self
pub fn located( severity: ErrorSeverity, location: SourceLocation, message: impl Into<String>, code: Option<ErrorCode>, ) -> Self
Create a located error with full context
Sourcepub fn parse_at(location: SourceLocation, message: impl Into<String>) -> Self
pub fn parse_at(location: SourceLocation, message: impl Into<String>) -> Self
Create a parse error at a specific location
Sourcepub fn semantic_at(
location: SourceLocation,
message: impl Into<String>,
code: ErrorCode,
) -> Self
pub fn semantic_at( location: SourceLocation, message: impl Into<String>, code: ErrorCode, ) -> Self
Create a semantic error at a specific location with the given error code.
Sourcepub fn is_warning(&self) -> bool
pub fn is_warning(&self) -> bool
Check if this is a warning
Sourcepub fn suggestions(&self) -> &[FixSuggestion]
pub fn suggestions(&self) -> &[FixSuggestion]
Get suggestions if available
Trait Implementations§
Source§impl Debug for CompilerError
impl Debug for CompilerError
Source§impl Display for CompilerError
impl Display for CompilerError
Source§impl Error for CompilerError
impl Error for CompilerError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for CompilerError
impl RefUnwindSafe for CompilerError
impl Send for CompilerError
impl Sync for CompilerError
impl Unpin for CompilerError
impl UnwindSafe for CompilerError
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
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