diff options
Diffstat (limited to 'tvix/eval')
-rw-r--r-- | tvix/eval/src/errors.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tvix/eval/src/errors.rs b/tvix/eval/src/errors.rs index 8c0d6124201e..5000afed947f 100644 --- a/tvix/eval/src/errors.rs +++ b/tvix/eval/src/errors.rs @@ -257,9 +257,9 @@ impl From<toml::de::Error> for ErrorKind { #[derive(Clone, Debug)] pub struct Error { - kind: ErrorKind, - span: Span, - contexts: Vec<String>, + pub kind: ErrorKind, + pub span: Span, + pub contexts: Vec<String>, } impl Error { |