unary operations

This commit is contained in:
Folkert 2021-02-27 22:17:07 +01:00
parent 492ae4c943
commit 95acd939c8
2 changed files with 61 additions and 5 deletions

View file

@ -389,6 +389,8 @@ pub enum EExpr<'a> {
Dot(Row, Col),
Access(Row, Col),
UnaryNot(Row, Col),
UnaryNegate(Row, Col),
Def(&'a SyntaxError<'a>, Row, Col),
Type(Type<'a>, Row, Col),