2023-08-22 15:40:50 +00:00
|
|
|
//! Error and Result types.
|
|
|
|
//!
|
|
|
|
//! To deal with errors from dependencies, either create a new error variant
|
|
|
|
//! or use the MacroFailure variant if the error can only occur inside a macro.
|
2023-09-29 11:17:11 +00:00
|
|
|
|
2023-10-06 17:32:58 +00:00
|
|
|
use crate::{value::value_type::ValueType, value::Value, Identifier};
|
2023-08-22 15:40:50 +00:00
|
|
|
|
|
|
|
use std::{fmt, io, time::SystemTimeError};
|
|
|
|
|
|
|
|
pub type Result<T> = std::result::Result<T, Error>;
|
|
|
|
|
2023-10-06 11:55:14 +00:00
|
|
|
#[derive(Clone, PartialEq)]
|
2023-08-22 15:40:50 +00:00
|
|
|
#[non_exhaustive]
|
|
|
|
pub enum Error {
|
2023-10-10 17:29:11 +00:00
|
|
|
UnexpectedSyntaxNode {
|
2023-09-28 19:58:01 +00:00
|
|
|
expected: &'static str,
|
|
|
|
actual: &'static str,
|
2023-10-01 06:43:27 +00:00
|
|
|
location: tree_sitter::Point,
|
2023-10-06 11:55:14 +00:00
|
|
|
relevant_source: String,
|
2023-09-28 19:58:01 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
ExpectedFieldName,
|
|
|
|
|
2023-09-29 11:17:11 +00:00
|
|
|
ExpectedChildNode {
|
|
|
|
empty_node_sexp: String,
|
|
|
|
},
|
|
|
|
|
2023-08-22 16:31:45 +00:00
|
|
|
/// The 'assert' macro did not resolve successfully.
|
|
|
|
AssertEqualFailed {
|
|
|
|
expected: Value,
|
|
|
|
actual: Value,
|
|
|
|
},
|
|
|
|
|
|
|
|
/// The 'assert' macro did not resolve successfully.
|
|
|
|
AssertFailed,
|
|
|
|
|
2023-08-22 15:40:50 +00:00
|
|
|
/// A row was inserted to a table with the wrong amount of values.
|
|
|
|
WrongColumnAmount {
|
|
|
|
expected: usize,
|
|
|
|
actual: usize,
|
|
|
|
},
|
|
|
|
|
|
|
|
/// An operator was called with the wrong amount of arguments.
|
|
|
|
ExpectedOperatorArgumentAmount {
|
|
|
|
expected: usize,
|
|
|
|
actual: usize,
|
|
|
|
},
|
|
|
|
|
|
|
|
/// A function was called with the wrong amount of arguments.
|
|
|
|
ExpectedFunctionArgumentAmount {
|
|
|
|
identifier: String,
|
|
|
|
expected: usize,
|
|
|
|
actual: usize,
|
|
|
|
},
|
|
|
|
|
|
|
|
/// A function was called with the wrong amount of arguments.
|
|
|
|
ExpectedAtLeastFunctionArgumentAmount {
|
|
|
|
identifier: String,
|
|
|
|
minimum: usize,
|
|
|
|
actual: usize,
|
|
|
|
},
|
|
|
|
|
|
|
|
ExpectedString {
|
|
|
|
actual: Value,
|
|
|
|
},
|
|
|
|
|
|
|
|
ExpectedInt {
|
|
|
|
actual: Value,
|
|
|
|
},
|
|
|
|
|
|
|
|
ExpectedFloat {
|
|
|
|
actual: Value,
|
|
|
|
},
|
|
|
|
|
|
|
|
/// An integer, floating point or value was expected.
|
|
|
|
ExpectedNumber {
|
|
|
|
actual: Value,
|
|
|
|
},
|
|
|
|
|
|
|
|
/// An integer, floating point or string value was expected.
|
|
|
|
ExpectedNumberOrString {
|
|
|
|
actual: Value,
|
|
|
|
},
|
|
|
|
|
|
|
|
ExpectedBoolean {
|
|
|
|
actual: Value,
|
|
|
|
},
|
|
|
|
|
|
|
|
ExpectedList {
|
|
|
|
actual: Value,
|
|
|
|
},
|
|
|
|
|
|
|
|
ExpectedFixedLenList {
|
|
|
|
expected_len: usize,
|
|
|
|
actual: Value,
|
|
|
|
},
|
|
|
|
|
|
|
|
ExpectedEmpty {
|
|
|
|
actual: Value,
|
|
|
|
},
|
|
|
|
|
|
|
|
ExpectedMap {
|
|
|
|
actual: Value,
|
|
|
|
},
|
|
|
|
|
|
|
|
ExpectedTable {
|
|
|
|
actual: Value,
|
|
|
|
},
|
|
|
|
|
|
|
|
ExpectedFunction {
|
|
|
|
actual: Value,
|
|
|
|
},
|
|
|
|
|
|
|
|
/// A string, list, map or table value was expected.
|
|
|
|
ExpectedCollection {
|
|
|
|
actual: Value,
|
|
|
|
},
|
|
|
|
|
|
|
|
/// Tried to append a child to a node such that the precedence of the child
|
|
|
|
/// is not higher. This error should never occur. If it does, please file a
|
|
|
|
/// bug report.
|
|
|
|
PrecedenceViolation,
|
|
|
|
|
|
|
|
/// A `VariableIdentifier` operation did not find its value in the context.
|
|
|
|
VariableIdentifierNotFound(String),
|
|
|
|
|
|
|
|
/// A `FunctionIdentifier` operation did not find its value in the context.
|
2023-10-06 17:32:58 +00:00
|
|
|
FunctionIdentifierNotFound(Identifier),
|
2023-08-22 15:40:50 +00:00
|
|
|
|
|
|
|
/// A value has the wrong type.
|
|
|
|
/// Only use this if there is no other error that describes the expected and
|
|
|
|
/// provided types in more detail.
|
|
|
|
TypeError {
|
|
|
|
/// The expected types.
|
|
|
|
expected: &'static [ValueType],
|
|
|
|
/// The actual value.
|
|
|
|
actual: Value,
|
|
|
|
},
|
|
|
|
|
|
|
|
/// An operator is used with a wrong combination of types.
|
|
|
|
WrongTypeCombination {
|
|
|
|
/// The operator that whose evaluation caused the error.
|
2023-09-29 06:53:31 +00:00
|
|
|
expected: ValueType,
|
2023-08-22 15:40:50 +00:00
|
|
|
/// The types that were used in the operator causing it to fail.
|
2023-09-29 06:53:31 +00:00
|
|
|
actual: ValueType,
|
2023-08-22 15:40:50 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/// An opening brace without a matching closing brace was found.
|
|
|
|
UnmatchedLBrace,
|
|
|
|
|
|
|
|
/// A closing brace without a matching opening brace was found.
|
|
|
|
UnmatchedRBrace,
|
|
|
|
|
|
|
|
/// Left of an opening brace or right of a closing brace is a token that does not expect the brace next to it.
|
|
|
|
/// For example, writing `4(5)` would yield this error, as the `4` does not have any operands.
|
|
|
|
MissingOperatorOutsideOfBrace,
|
|
|
|
|
|
|
|
/// An addition operation performed by Rust failed.
|
|
|
|
AdditionError {
|
|
|
|
/// The first argument of the addition.
|
|
|
|
augend: Value,
|
|
|
|
/// The second argument of the addition.
|
|
|
|
addend: Value,
|
|
|
|
},
|
|
|
|
|
|
|
|
/// A subtraction operation performed by Rust failed.
|
|
|
|
SubtractionError {
|
|
|
|
/// The first argument of the subtraction.
|
|
|
|
minuend: Value,
|
|
|
|
/// The second argument of the subtraction.
|
|
|
|
subtrahend: Value,
|
|
|
|
},
|
|
|
|
|
|
|
|
/// A negation operation performed by Rust failed.
|
|
|
|
NegationError {
|
|
|
|
/// The argument of the negation.
|
|
|
|
argument: Value,
|
|
|
|
},
|
|
|
|
|
|
|
|
/// A multiplication operation performed by Rust failed.
|
|
|
|
MultiplicationError {
|
|
|
|
/// The first argument of the multiplication.
|
|
|
|
multiplicand: Value,
|
|
|
|
/// The second argument of the multiplication.
|
|
|
|
multiplier: Value,
|
|
|
|
},
|
|
|
|
|
|
|
|
/// A division operation performed by Rust failed.
|
|
|
|
DivisionError {
|
|
|
|
/// The first argument of the division.
|
|
|
|
dividend: Value,
|
|
|
|
/// The second argument of the division.
|
|
|
|
divisor: Value,
|
|
|
|
},
|
|
|
|
|
|
|
|
/// A modulation operation performed by Rust failed.
|
|
|
|
ModulationError {
|
|
|
|
/// The first argument of the modulation.
|
|
|
|
dividend: Value,
|
|
|
|
/// The second argument of the modulation.
|
|
|
|
divisor: Value,
|
|
|
|
},
|
|
|
|
|
|
|
|
/// A regular expression could not be parsed
|
|
|
|
InvalidRegex {
|
|
|
|
/// The invalid regular expression
|
|
|
|
regex: String,
|
|
|
|
/// Failure message from the regex engine
|
|
|
|
message: String,
|
|
|
|
},
|
|
|
|
|
|
|
|
/// A modification was attempted on a `Context` that does not allow modifications.
|
|
|
|
ContextNotMutable,
|
|
|
|
|
|
|
|
/// An escape sequence within a string literal is illegal.
|
|
|
|
IllegalEscapeSequence(String),
|
|
|
|
|
|
|
|
/// This context does not allow enabling builtin functions.
|
|
|
|
BuiltinFunctionsCannotBeEnabled,
|
|
|
|
|
|
|
|
/// This context does not allow disabling builtin functions.
|
|
|
|
BuiltinFunctionsCannotBeDisabled,
|
|
|
|
|
|
|
|
/// The function failed due to an external error.
|
|
|
|
MacroFailure(String),
|
|
|
|
|
|
|
|
/// A custom error explained by its message.
|
|
|
|
CustomMessage(String),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<csv::Error> for Error {
|
|
|
|
fn from(value: csv::Error) -> Self {
|
|
|
|
Error::MacroFailure(value.to_string())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<json::Error> for Error {
|
|
|
|
fn from(value: json::Error) -> Self {
|
|
|
|
Error::MacroFailure(value.to_string())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<io::Error> for Error {
|
|
|
|
fn from(value: std::io::Error) -> Self {
|
|
|
|
Error::MacroFailure(value.to_string())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<git2::Error> for Error {
|
|
|
|
fn from(value: git2::Error) -> Self {
|
|
|
|
Error::MacroFailure(value.to_string())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<reqwest::Error> for Error {
|
|
|
|
fn from(value: reqwest::Error) -> Self {
|
|
|
|
Error::MacroFailure(value.to_string())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<serde_json::Error> for Error {
|
|
|
|
fn from(value: serde_json::Error) -> Self {
|
|
|
|
Error::MacroFailure(value.to_string())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<SystemTimeError> for Error {
|
|
|
|
fn from(value: SystemTimeError) -> Self {
|
|
|
|
Error::MacroFailure(value.to_string())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<trash::Error> for Error {
|
|
|
|
fn from(value: trash::Error) -> Self {
|
|
|
|
Error::MacroFailure(value.to_string())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-08 09:59:44 +00:00
|
|
|
impl From<toml::de::Error> for Error {
|
|
|
|
fn from(value: toml::de::Error) -> Self {
|
|
|
|
Error::MacroFailure(value.to_string())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-22 15:40:50 +00:00
|
|
|
impl Error {
|
2023-10-06 21:11:50 +00:00
|
|
|
pub(crate) fn _expect_function_argument_amount(
|
2023-08-22 15:40:50 +00:00
|
|
|
identifier: &str,
|
|
|
|
actual: usize,
|
|
|
|
expected: usize,
|
|
|
|
) -> Result<()> {
|
|
|
|
if actual == expected {
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
Err(Error::ExpectedFunctionArgumentAmount {
|
|
|
|
identifier: identifier.to_string(),
|
|
|
|
expected,
|
|
|
|
actual,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-06 21:11:50 +00:00
|
|
|
pub(crate) fn _expected_minimum_function_argument_amount(
|
2023-08-22 15:40:50 +00:00
|
|
|
identifier: &str,
|
|
|
|
actual: usize,
|
|
|
|
minimum: usize,
|
|
|
|
) -> Result<()> {
|
|
|
|
if actual >= minimum {
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
Err(Error::ExpectedAtLeastFunctionArgumentAmount {
|
|
|
|
identifier: identifier.to_string(),
|
|
|
|
minimum,
|
|
|
|
actual,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn type_error(actual: Value, expected: &'static [ValueType]) -> Self {
|
|
|
|
Error::TypeError { actual, expected }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn expected_string(actual: Value) -> Self {
|
|
|
|
Error::ExpectedString { actual }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn expected_int(actual: Value) -> Self {
|
|
|
|
Error::ExpectedInt { actual }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn expected_float(actual: Value) -> Self {
|
|
|
|
Error::ExpectedFloat { actual }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn expected_number(actual: Value) -> Self {
|
|
|
|
Error::ExpectedNumber { actual }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn expected_number_or_string(actual: Value) -> Self {
|
|
|
|
Error::ExpectedNumberOrString { actual }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn expected_boolean(actual: Value) -> Self {
|
|
|
|
Error::ExpectedBoolean { actual }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn expected_list(actual: Value) -> Self {
|
|
|
|
Error::ExpectedList { actual }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn expected_fixed_len_list(expected_len: usize, actual: Value) -> Self {
|
|
|
|
Error::ExpectedFixedLenList {
|
|
|
|
expected_len,
|
|
|
|
actual,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn expected_empty(actual: Value) -> Self {
|
|
|
|
Error::ExpectedEmpty { actual }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn expected_map(actual: Value) -> Self {
|
|
|
|
Error::ExpectedMap { actual }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn expected_table(actual: Value) -> Self {
|
|
|
|
Error::ExpectedTable { actual }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn expected_function(actual: Value) -> Self {
|
|
|
|
Error::ExpectedFunction { actual }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn expected_collection(actual: Value) -> Self {
|
|
|
|
Error::ExpectedCollection { actual }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Constructs `EvalexprError::InvalidRegex(regex)`
|
|
|
|
pub fn invalid_regex(regex: String, message: String) -> Self {
|
|
|
|
Error::InvalidRegex { regex, message }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Returns `Ok(())` if the given value is a string or a numeric.
|
|
|
|
pub fn expect_number_or_string(actual: &Value) -> Result<()> {
|
|
|
|
match actual {
|
2023-10-05 12:03:14 +00:00
|
|
|
Value::String(_) | Value::Float(_) | Value::Integer(_) => Ok(()),
|
2023-08-22 15:40:50 +00:00
|
|
|
_ => Err(Error::expected_number_or_string(actual.clone())),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl std::error::Error for Error {}
|
|
|
|
|
2023-10-06 11:55:14 +00:00
|
|
|
impl fmt::Debug for Error {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
write!(f, "{self}")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-22 15:40:50 +00:00
|
|
|
impl fmt::Display for Error {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
use Error::*;
|
|
|
|
|
|
|
|
match self {
|
2023-10-02 21:15:05 +00:00
|
|
|
AssertEqualFailed { expected, actual } => write!(
|
|
|
|
f,
|
|
|
|
"Equality assertion failed. {expected} does not equal {actual}."
|
|
|
|
),
|
|
|
|
AssertFailed => write!(
|
|
|
|
f,
|
|
|
|
"Assertion failed. A false value was passed to \"assert\"."
|
|
|
|
),
|
2023-08-22 15:40:50 +00:00
|
|
|
ExpectedOperatorArgumentAmount { expected, actual } => write!(
|
|
|
|
f,
|
|
|
|
"An operator expected {} arguments, but got {}.",
|
|
|
|
expected, actual
|
|
|
|
),
|
|
|
|
ExpectedFunctionArgumentAmount {
|
|
|
|
expected,
|
|
|
|
actual,
|
|
|
|
identifier,
|
|
|
|
} => write!(
|
|
|
|
f,
|
|
|
|
"{identifier} expected {expected} arguments, but got {actual}.",
|
|
|
|
),
|
|
|
|
ExpectedAtLeastFunctionArgumentAmount {
|
|
|
|
minimum,
|
|
|
|
actual,
|
|
|
|
identifier,
|
|
|
|
} => write!(
|
|
|
|
f,
|
|
|
|
"{identifier} expected a minimum of {minimum} arguments, but got {actual}.",
|
|
|
|
),
|
|
|
|
ExpectedString { actual } => {
|
|
|
|
write!(f, "Expected a Value::String, but got {:?}.", actual)
|
|
|
|
}
|
|
|
|
ExpectedInt { actual } => write!(f, "Expected a Value::Int, but got {:?}.", actual),
|
|
|
|
ExpectedFloat { actual } => write!(f, "Expected a Value::Float, but got {:?}.", actual),
|
|
|
|
ExpectedNumber { actual } => write!(
|
|
|
|
f,
|
|
|
|
"Expected a Value::Float or Value::Int, but got {:?}.",
|
|
|
|
actual
|
|
|
|
),
|
|
|
|
ExpectedNumberOrString { actual } => write!(
|
|
|
|
f,
|
|
|
|
"Expected a Value::Number or a Value::String, but got {:?}.",
|
|
|
|
actual
|
|
|
|
),
|
|
|
|
ExpectedBoolean { actual } => {
|
|
|
|
write!(f, "Expected a Value::Boolean, but got {:?}.", actual)
|
|
|
|
}
|
|
|
|
ExpectedList { actual } => write!(f, "Expected a Value::Tuple, but got {:?}.", actual),
|
|
|
|
ExpectedFixedLenList {
|
|
|
|
expected_len,
|
|
|
|
actual,
|
|
|
|
} => write!(
|
|
|
|
f,
|
|
|
|
"Expected a Value::Tuple of len {}, but got {:?}.",
|
|
|
|
expected_len, actual
|
|
|
|
),
|
|
|
|
ExpectedEmpty { actual } => write!(f, "Expected a Value::Empty, but got {:?}.", actual),
|
|
|
|
ExpectedMap { actual } => write!(f, "Expected a Value::Map, but got {:?}.", actual),
|
|
|
|
ExpectedTable { actual } => write!(f, "Expected a Value::Table, but got {:?}.", actual),
|
|
|
|
ExpectedFunction { actual } => {
|
|
|
|
write!(f, "Expected Value::Function, but got {:?}.", actual)
|
|
|
|
}
|
|
|
|
ExpectedCollection { actual } => {
|
|
|
|
write!(
|
|
|
|
f,
|
|
|
|
"Expected a string, list, map or table, but got {:?}.",
|
|
|
|
actual
|
|
|
|
)
|
|
|
|
}
|
|
|
|
PrecedenceViolation => write!(
|
|
|
|
f,
|
|
|
|
"Tried to append a node to another node with higher precedence."
|
|
|
|
),
|
|
|
|
VariableIdentifierNotFound(identifier) => write!(
|
|
|
|
f,
|
2023-10-10 21:12:38 +00:00
|
|
|
"Variable identifier is not bound to anything by context: {}.",
|
2023-08-22 15:40:50 +00:00
|
|
|
identifier
|
|
|
|
),
|
|
|
|
FunctionIdentifierNotFound(identifier) => write!(
|
|
|
|
f,
|
2023-10-10 21:12:38 +00:00
|
|
|
"Function identifier is not bound to anything by context: {}.",
|
|
|
|
identifier.inner()
|
2023-08-22 15:40:50 +00:00
|
|
|
),
|
|
|
|
TypeError { expected, actual } => {
|
|
|
|
write!(
|
|
|
|
f,
|
|
|
|
"Type Error. The value {actual} is not one of the following: {expected:?}.",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
UnmatchedLBrace => write!(f, "Found an unmatched opening parenthesis '('."),
|
|
|
|
UnmatchedRBrace => write!(f, "Found an unmatched closing parenthesis ')'."),
|
|
|
|
MissingOperatorOutsideOfBrace { .. } => write!(
|
|
|
|
f,
|
|
|
|
"Found an opening parenthesis that is preceded by something that does not take \
|
|
|
|
any arguments on the right, or found a closing parenthesis that is succeeded by \
|
|
|
|
something that does not take any arguments on the left."
|
|
|
|
),
|
|
|
|
AdditionError { augend, addend } => write!(f, "Error adding {} + {}", augend, addend),
|
|
|
|
SubtractionError {
|
|
|
|
minuend,
|
|
|
|
subtrahend,
|
|
|
|
} => write!(f, "Error subtracting {} - {}", minuend, subtrahend),
|
|
|
|
NegationError { argument } => write!(f, "Error negating -{}", argument),
|
|
|
|
MultiplicationError {
|
|
|
|
multiplicand,
|
|
|
|
multiplier,
|
|
|
|
} => write!(f, "Error multiplying {} * {}", multiplicand, multiplier),
|
|
|
|
DivisionError { dividend, divisor } => {
|
|
|
|
write!(f, "Error dividing {} / {}", dividend, divisor)
|
|
|
|
}
|
|
|
|
ModulationError { dividend, divisor } => {
|
|
|
|
write!(f, "Error modulating {} % {}", dividend, divisor)
|
|
|
|
}
|
|
|
|
InvalidRegex { regex, message } => write!(
|
|
|
|
f,
|
|
|
|
"Regular expression {:?} is invalid: {:?}",
|
|
|
|
regex, message
|
|
|
|
),
|
|
|
|
ContextNotMutable => write!(f, "Cannot manipulate context"),
|
|
|
|
BuiltinFunctionsCannotBeEnabled => {
|
|
|
|
write!(f, "This context does not allow enabling builtin functions")
|
|
|
|
}
|
|
|
|
BuiltinFunctionsCannotBeDisabled => {
|
|
|
|
write!(f, "This context does not allow disabling builtin functions")
|
|
|
|
}
|
|
|
|
IllegalEscapeSequence(string) => write!(f, "Illegal escape sequence: {}", string),
|
|
|
|
MacroFailure(message) => write!(f, "Function failure: {}", message),
|
|
|
|
CustomMessage(message) => write!(f, "Error: {}", message),
|
|
|
|
WrongColumnAmount { expected, actual } => write!(
|
|
|
|
f,
|
|
|
|
"Wrong number of columns for this table. Expected {expected}, found {actual}."
|
|
|
|
),
|
2023-10-10 17:29:11 +00:00
|
|
|
UnexpectedSyntaxNode {
|
2023-10-02 21:15:05 +00:00
|
|
|
expected,
|
2023-08-22 15:40:50 +00:00
|
|
|
actual,
|
2023-10-02 21:15:05 +00:00
|
|
|
location,
|
2023-10-10 17:29:11 +00:00
|
|
|
relevant_source
|
2023-08-22 15:40:50 +00:00
|
|
|
} => write!(
|
|
|
|
f,
|
2023-10-10 17:29:11 +00:00
|
|
|
"Unexpected syntax at {location}. Expected {expected}, but found {actual}. {relevant_source}"
|
2023-08-22 15:40:50 +00:00
|
|
|
),
|
2023-10-02 21:15:05 +00:00
|
|
|
ExpectedFieldName => write!(
|
|
|
|
f,
|
|
|
|
"Expected a field name for this node, but none was found."
|
|
|
|
),
|
|
|
|
WrongTypeCombination { expected, actual } => write!(
|
|
|
|
f,
|
|
|
|
"Wrong type combination. Expected {expected}, found {actual}."
|
|
|
|
),
|
|
|
|
ExpectedChildNode { empty_node_sexp } => {
|
|
|
|
write!(f, "Expected this node to have a child, {empty_node_sexp}.")
|
|
|
|
}
|
2023-08-22 15:40:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|