refactor in-parens parsing

This commit is contained in:
Folkert 2021-02-25 17:40:59 +01:00
parent a1d72fd74d
commit abd56c16b9
2 changed files with 190 additions and 88 deletions

View file

@ -376,6 +376,9 @@ pub enum EExpr<'a> {
End(Row, Col),
Space(BadInputError, Row, Col),
Dot(Row, Col),
Access(Row, Col),
When(When<'a>, Row, Col),
If(If<'a>, Row, Col),