use crate::lst_parser::syntax_kind::SyntaxKind; #[derive(Debug)] pub enum SyntaxError { Expected(Vec), PipelineNeedsSink, // if there was two space seperated items in a list SpaceSepInList, SemicolonInList, }