add EExpr error for unexpected comma

This commit is contained in:
Luke Boswell 2024-04-02 20:48:13 +11:00
parent 62cc19c64b
commit ca01913ab3
No known key found for this signature in database
GPG key ID: F6DB3C9DB47377B0
3 changed files with 30 additions and 1 deletions

View file

@ -364,6 +364,8 @@ pub enum EExpr<'a> {
IndentStart(Position),
IndentEnd(Position),
UnexpectedComma(Position),
}
#[derive(Debug, Clone, PartialEq, Eq)]