diff options
Diffstat (limited to 'src/error.rs')
| -rw-r--r-- | src/error.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/error.rs b/src/error.rs index 55156038..b3597266 100644 --- a/src/error.rs +++ b/src/error.rs @@ -1,6 +1,9 @@ use serde::Serialize; +use crate::syntax::SpanVec; +pub type Errors = SpanVec<Error>; + #[derive(Debug, Clone, Eq, PartialEq, Serialize)] pub struct Error { pub message: String, |
