2024-04-30 12:21:06 +02:00
|
|
|
use crate::lst_parser::syntax_kind::SyntaxKind;
|
2024-04-24 11:07:38 +02:00
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum SyntaxError {
|
|
|
|
Expected(Vec<SyntaxKind>),
|
2024-04-30 12:21:06 +02:00
|
|
|
PipelineNeedsSink,
|
2024-05-04 23:12:47 +02:00
|
|
|
// if there was two space seperated items in a list
|
|
|
|
SpaceSepInList,
|
|
|
|
SemicolonInList,
|
2024-04-24 11:07:38 +02:00
|
|
|
}
|