mirror of
https://github.com/nushell/nushell.git
synced 2025-02-05 21:21:10 +01:00
10 lines
175 B
Rust
10 lines
175 B
Rust
pub use crate::Span;
|
|
|
|
#[derive(Debug)]
|
|
pub enum ParseError {
|
|
ExtraTokens(Span),
|
|
UnexpectedEof(String, Span),
|
|
UnknownStatement(Span),
|
|
Mismatch(String, Span),
|
|
}
|