1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
use crate::errors::ExpressionError;
use leo_ast::{Error as FormattedError, Span};
use std::path::Path;
#[derive(Debug, Error)]
pub enum ConsoleError {
#[error("{}", _0)]
Error(#[from] FormattedError),
#[error("{}", _0)]
Expression(#[from] ExpressionError),
}
impl ConsoleError {
pub fn set_path(&mut self, path: &Path) {
match self {
ConsoleError::Expression(error) => error.set_path(path),
ConsoleError::Error(error) => error.set_path(path),
}
}
fn new_from_span(message: String, span: Span) -> Self {
ConsoleError::Error(FormattedError::new_from_span(message, span))
}
pub fn length(containers: usize, parameters: usize, span: Span) -> Self {
let message = format!(
"Formatter given {} containers and found {} parameters",
containers, parameters
);
Self::new_from_span(message, span)
}
pub fn assertion_depends_on_input(span: Span) -> Self {
let message =
"console.assert() failed to evaluate. This error is caused by empty input file values".to_string();
Self::new_from_span(message, span)
}
pub fn assertion_failed(expression: String, span: Span) -> Self {
let message = format!("Assertion `{}` failed", expression);
Self::new_from_span(message, span)
}
pub fn assertion_must_be_boolean(expression: String, span: Span) -> Self {
let message = format!("Assertion expression `{}` must evaluate to a boolean value", expression);
Self::new_from_span(message, span)
}
}