about summary refs log tree commit diff
path: root/tvix/eval/src/errors.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/eval/src/errors.rs')
-rw-r--r--tvix/eval/src/errors.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tvix/eval/src/errors.rs b/tvix/eval/src/errors.rs
index 8c0d612420..5000afed94 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 {