iowo/crates/lang/src/lst_parser/error.rs

8 lines
145 B
Rust
Raw Normal View History

use crate::lst_parser::syntax_kind::SyntaxKind;
2024-04-24 11:07:38 +02:00
#[derive(Debug)]
pub enum SyntaxError {
Expected(Vec<SyntaxKind>),
PipelineNeedsSink,
2024-04-24 11:07:38 +02:00
}